/* Jaz Ženska - Master Stylesheet */
/* All CSS consolidated into single file for maximum compatibility */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --dark-violet: #643843;
    --mid-violet: #99627A;
    --pinky: #C88EA7;
    --almost-white: #E7CBCB;
    --text-dark: #3a3a3a;
    --text-light: #666;
    --white: #ffffff;
    --secondary: #E7CBCB;
    --footer-violet: #643843;
    --header-violet: #643843;
    --hero-image-bg: #E7CBCB;
    --main-white: #fff6f9;
    --hero-light: #f8f0f2;
}

@font-face {
    font-family: 'Priestacy';
    src: url('../fonts/Priestacy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Garamond 3 Bold';
    src: url('../fonts/Garamond 3 Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--main-white);
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    position: relative;
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
    padding-bottom: 0;
    touch-action: pan-y pan-x;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


html {
    scroll-behavior: smooth;
    background-color: var(--main-white);
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
    overflow-x: hidden;
    overflow-y: auto;
    touch-action: pan-y pan-x;
    min-height: 100%;
}

/* ===== CUSTOM SCROLLBAR ===== */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--almost-white);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--pinky) 0%, var(--mid-violet) 100%);
    border-radius: 10px;
    border: 2px solid var(--almost-white);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--mid-violet) var(--almost-white);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #643843;
    padding: 10px 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    z-index: 1001;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.8;
     background-color: var(--dark-violet);
}

/* ===== HEADER ===== */
header {
    padding: 30px 0;
    position: sticky;
    top: 0;
    background: #F8F1ED;
    width: 100%;
    left: 0;
    z-index: 1000;
    min-height: 90px;
    position: relative;
}

.header-content {
    max-width: 1200px;
    text-decoration: var(--white);
    margin: 0 auto;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.header-logo {
    display: flex;
    align-items: center;
    z-index: 10;
    margin-right: auto;
    margin-left: -80px;
}

.header-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-right: 120px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--white);
    font-style: italic;
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    color: var(--white);
    text-decoration-color: white;
}

.desktop-nav {
    margin-left: 80px;
    flex: 1;
}

/* ===== BURGER MENU ===== */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
    position: relative;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--dark-violet);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1003;
    padding: 0;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.mobile-menu-content {
    padding: 100px 30px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-top-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-top-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.mobile-top-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.mobile-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    padding: 20px 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav a:hover {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 15px;
}

.mobile-social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.mobile-social-icons a:hover {
    transform: translateY(-3px);
    background-color: var(--white);
}

.mobile-social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

nav {
    position: relative;
    z-index: 10;
    margin-left: 40px;
}

nav a {
    color: var(--dark-violet);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
    z-index: 10;
}

nav a:hover {
    color: var(--mid-violet);
    opacity: 0.8;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dark-violet);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background-color: var(--dark-violet);
}

.social-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Header Consultation Button */
.header-consultation-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(100, 56, 67, 0.3);
    white-space: nowrap;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    z-index: 10;
}

.header-consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 56, 67, 0.4);
    background: linear-gradient(135deg, var(--dark-violet) 0%, var(--mid-violet) 100%);
    color: rgba(255, 255, 255, 0.85);
}

/* Floating Social Media Icons (Right Side) */
.floating-social-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.floating-social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(100, 56, 67, 0.4);
    transition: all 0.3s ease, background 0.5s ease;
    text-decoration: none;
    background-size: 200% 200%;
    background-position: 0% 50%;
}

.floating-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(135deg, var(--dark-violet) 0%, var(--mid-violet) 100%);
    background-size: 200% 200%;
    background-position: 100% 50%;
    box-shadow: 0 6px 20px rgba(100, 56, 67, 0.5);
}

.floating-social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .floating-social-container {
        right: 15px;
        bottom: 15px;
    }
    
    .floating-social-link {
        width: 44px;
        height: 44px;
    }
}

/* ===== WELCOME POPUP MODAL ===== */
.welcome-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow: hidden;
}

.welcome-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.welcome-popup-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s ease;
    animation: popupPulse 2s ease-in-out infinite;
    margin: auto;
    height: calc(100vh - 40px);
    max-height: calc(100vh - 40px);
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.welcome-popup-content {
    overflow: visible;
}

.welcome-popup-overlay.active .welcome-popup-container {
    transform: scale(1) translateY(0);
}

@keyframes popupPulse {
    0%, 100% {
        box-shadow: 0 30px 80px rgba(100, 56, 67, 0.4);
    }
    50% {
        box-shadow: 0 30px 80px rgba(100, 56, 67, 0.6), 0 0 40px rgba(200, 142, 167, 0.3);
    }
}

.welcome-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--pinky);
    color: var(--dark-violet);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.welcome-popup-close:hover {
    background: var(--pinky);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.welcome-popup-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: stretch;
}

.welcome-popup-image {
    position: relative;
    overflow: hidden;
    background: var(--almost-white);
    flex: 0 0 50%;
    min-width: 50%;
    max-width: 50%;
    height: 100%;
}

.welcome-popup-image img {
    width: 150%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.welcome-popup-text {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(135deg, var(--white) 0%, var(--hero-light) 100%);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
    max-height: calc(100vh - 40px);
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.welcome-popup-text .welcome-popup-button {
    align-self: flex-start;
    width: auto;
    max-width: fit-content;
    flex-shrink: 0;
}

.welcome-popup-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--pinky) 0%, var(--mid-violet) 50%, var(--dark-violet) 100%);
}

.welcome-popup-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    color: var(--white);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    animation: badgeShine 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(200, 142, 167, 0.4);
    letter-spacing: 1px;
}

@keyframes badgeShine {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(200, 142, 167, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(200, 142, 167, 0.6);
    }
}

.welcome-popup-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--dark-violet);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.welcome-popup-highlights {
    margin-bottom: 25px;
}

.welcome-popup-highlights p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 5px;
    line-height: 1.6;
}

.welcome-popup-highlights strong {
    color: var(--mid-violet);
    font-weight: 700;
    font-size: 18px;
    margin-right: 8px;
}

.welcome-popup-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.welcome-popup-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    width: auto;
    max-width: fit-content;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(100, 56, 67, 0.4);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(100, 56, 67, 0.4);
    }
    50% {
        box-shadow: 0 10px 35px rgba(100, 56, 67, 0.6);
    }
}

.welcome-popup-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.welcome-popup-button:hover::before {
    left: 100%;
}

.welcome-popup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(100, 56, 67, 0.5);
    background: linear-gradient(135deg, var(--dark-violet) 0%, var(--mid-violet) 100%);
}

.welcome-popup-button svg {
    transition: transform 0.3s ease;
}

.welcome-popup-button:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .welcome-popup-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .welcome-popup-container {
        max-width: 100%;
        border-radius: 20px;
        max-height: calc(100vh - 20px);
        margin: 0;
    }
    
    .welcome-popup-content {
        grid-template-columns: 1fr;
    }
    
    .welcome-popup-image {
        min-height: 250px;
        order: 1;
    }
    
    .welcome-popup-text {
        padding: 40px 30px;
        order: 2;
    }
    
    .welcome-popup-text h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .welcome-popup-highlights p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .welcome-popup-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .welcome-popup-button {
        padding: 14px 20px;
        font-size: 13px;
        width: auto;
        justify-content: center;
    }
    
    .welcome-popup-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
        z-index: 10003;
    }
    
    .welcome-popup-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #F8F1ED;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 30% 70%;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.hero-content-left {
    background: #F8F1ED;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 60px;
    padding-top: 180px;
    position: relative;
    z-index: 100;
}

.hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 30px;
    display: block;
}

.hero-content-left h1 {
    font-family: 'Garamond 3 Bold', serif;
    font-size: 72px;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 40px;
    text-align: left;
    max-width: 100%;
    white-space: normal;
    word-spacing: normal;
    letter-spacing: -0.5px;
    text-transform: none !important;
}

.hero-signature {
    font-family: 'Priestacy', cursive;
    font-size: 92px;
    font-weight: normal;
    color: #934615;
    position: absolute;
    right: -200px;
    top: 45%;
    transform: translateY(-50%) rotate(-8deg);
    z-index: 101;
    opacity: 0.85;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.hero-cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--dark-violet) 0%, var(--mid-violet) 100%);
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(100, 56, 67, 0.3);
    margin-top: 20px;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 56, 67, 0.4);
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
}

.hero-image-right {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background: var(--almost-white);
    width: 100%;
    z-index: 10;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-image {
    display: none;
}

/* Responsive styles for hero section */
@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content-left {
        padding: 60px 40px;
        min-height: 500px;
    }
    
    .hero-content-left h1 {
        font-size: 42px;
    }
    
    .hero-image-right {
        height: 500px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-content-left {
        padding: 40px 30px;
    }
    
    .hero-content-left h1 {
        font-size: 36px;
    }
    
    .hero-label {
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .hero-cta-btn {
        padding: 14px 32px;
        font-size: 13px;
    }
}

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

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--almost-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    max-height: 400px;
}

.hero-content {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 80px 40px 40px 40px;
    color: var(--text-dark);
    z-index: 2;
    text-align: center;
    margin: 0;
    border-radius: 0;
}

.hero-content::before {
    display: none;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    line-height: 1.1;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 20px auto;
    padding: 0;
    position: relative;
    z-index: 2;
    color: var(--dark-violet);
    font-weight: 700;
    letter-spacing: 0.5px;
    word-spacing: 0.2em;
    overflow: visible;
    white-space: nowrap;
    display: block;
    text-transform: uppercase;
    text-align: center;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.hero h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
    color: #2a2a2a;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.hero-bottom-text * {
    position: relative;
    z-index: 1;
}

.hero-bottom-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.9;
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 800px;
    padding: 35px 50px 45px 50px;
    background: linear-gradient(145deg, #f8f4f7 0%, #f5f0f2 50%, #f0e8ed 100%);
    border-radius: 25px 25px 0 0;
    box-shadow: 
        0 -10px 40px rgba(100, 56, 67, 0.12),
        0 -4px 20px rgba(153, 98, 122, 0.08),
        0 8px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(153, 98, 122, 0.2);
    border-bottom: none;
    color: #4a2d33;
    text-shadow: none;
    font-weight: 500;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFadeIn 0.8s ease-out 0.3s forwards;
    position: relative;
    overflow: hidden;
}

.hero-bottom-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--mid-violet) 20%,
        var(--dark-violet) 50%,
        var(--mid-violet) 80%,
        transparent 100%);
    border-radius: 25px 25px 0 0;
    opacity: 0.7;
}

.hero-bottom-text::after {
    display: none;
}

.hero-read-more-btn {
    display: inline-flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f0f2 100%);
    color: var(--mid-violet);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: 2px solid rgba(153, 98, 122, 0.2);
    box-shadow: 
        0 4px 15px rgba(100, 56, 67, 0.15),
        0 2px 8px rgba(153, 98, 122, 0.1);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
    opacity: 0;
    animation: slideUpFadeIn 0.8s ease-out 0.5s forwards;
}

.hero-read-more-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: var(--dark-violet);
    border-color: #99627A;
    transform: translateY(-3px);
    box-shadow: 
        0 6px 20px rgba(100, 56, 67, 0.2),
        0 3px 12px rgba(153, 98, 122, 0.15);
}

.hero-read-more-btn svg {
    transition: transform 0.3s ease;
}

.hero-read-more-btn:hover svg {
    transform: translateY(3px);
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description-wrapper {
    width: fit-content;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    color: var(--white);
    margin-bottom: 0;
    width: 100%;
    max-width: 900px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #643843 0%, #8a5a6a 30%, #7a4a5a 50%, #8a5a6a 70%, #643843 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-shadow: none;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    color: #3a3a3a;
    margin-bottom: 30px;
    max-width: none;
    width: fit-content;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-shadow: none;
    font-weight: 400;
}

/* Responsive styles for hero section */
@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content-left {
        padding: 60px 40px;
        min-height: 500px;
    }
    
    .hero-content-left h1 {
        font-size: 42px;
    }
    
    .hero-image-right {
        height: 500px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-content-left {
        padding: 40px 30px;
    }
    
    .hero-content-left h1 {
        font-size: 36px;
    }
    
    .hero-label {
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .hero-cta-btn {
        padding: 14px 32px;
        font-size: 13px;
    }
}

.hero-cta-button {
    display: none;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    z-index: 10;
    margin-top: 0;
    margin-bottom: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 0;
    padding: 22px 60px;
    background: linear-gradient(135deg, #99627A 0%, #643843 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 30px rgba(100, 56, 67, 0.4),
                0 4px 15px rgba(100, 56, 67, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-size: 20px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(100, 56, 67, 0.5),
                0 6px 20px rgba(100, 56, 67, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.01);
}

.hero-decoration {
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
    height: 2px;
    background: linear-gradient(90deg, var(--pinky) 0%, var(--mid-violet) 50%, transparent 100%);
    position: relative;
    z-index: 1;
}

.hero-decoration::after {
    content: '✨';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.8;
}

/* ===== WHY JOIN SECTION ===== */
.why-join {
    background: var(--main-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.why-join-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-join h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--dark-violet);
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.why-join-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-join-step {
    padding: 60px 40px;
    position: relative;
    color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 600px;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.why-join-step.step-1 {
    background: linear-gradient(135deg, var(--almost-white) 0%, var(--pinky) 100%);
    transition-delay: 0.1s;
}

.why-join-step.step-2 {
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    transition-delay: 0.3s;
}

.why-join-step.step-3 {
    background: linear-gradient(135deg, var(--mid-violet) 0%, #855066 100%);
    transition-delay: 0.5s;
}

.why-join-step.step-4 {
    background: linear-gradient(135deg, #855066 0%, var(--dark-violet) 100%);
    transition-delay: 0.7s;
}

.why-join-step.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.why-join-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.why-join-step p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.step-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--dark-violet);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin-top: auto;
}

.step-button:hover {
    background-color: var(--white);
    color: var(--dark-violet);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-join-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-join-step {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .why-join-steps {
        grid-template-columns: 1fr;
    }
    
    .why-join-step {
        min-height: auto;
        padding: 50px 30px;
    }
    
    .step-number {
        font-size: 80px;
    }
    
    .why-join h2 {
        font-size: 36px;
        margin-bottom: 50px;
    }
}

/* ===== CURRENT EVENT SECTION ===== */
.current-event {
    background: linear-gradient(135deg, var(--almost-white) 0%, var(--main-white) 100%);
    padding: 60px 0 60px 0;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.current-event::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--pinky) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

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

.event-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--mid-violet);
    margin-bottom: 20px;
    margin-top: 40px;
    position: relative;
    padding-bottom: 15px;
    z-index: 2;
}

.event-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--pinky);
}

.current-event-content {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 25px 25px 0 0;
    padding: 60px 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid var(--almost-white);
    border-bottom: none;
    position: relative;
    overflow: visible;
    margin-top: 50px;
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
    z-index: 1;
}

.current-event-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--pinky) 0%, var(--mid-violet) 50%, var(--pinky) 100%);
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-violet);
    margin-bottom: 20px;
    line-height: 1.2;
}

.event-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.event-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    color: var(--dark-violet);
}

.event-date svg {
    width: 28px;
    height: 28px;
    color: var(--pinky);
}

.date-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-violet);
}

.event-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.event-button-primary {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(100, 56, 67, 0.3);
}

.event-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(100, 56, 67, 0.4);
    background: linear-gradient(135deg, var(--dark-violet) 0%, var(--mid-violet) 100%);
}

.event-button-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--dark-violet);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--mid-violet);
    transition: all 0.3s ease;
}

.event-button-secondary:hover {
    background: var(--mid-violet);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(100, 56, 67, 0.2);
}

.event-button-notify {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 18px 45px;
    background: var(--white);
    color: var(--mid-violet);
    text-decoration: none;
    border-radius: 0 0 25px 25px;
    font-weight: 600;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0.5px;
    border: 2px solid var(--almost-white);
    border-top: none;
    border-style: dashed;
    border-top-style: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.event-button-notify::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 56, 67, 0.1), transparent);
    transition: left 0.5s ease;
}

.event-button-notify:hover {
    background: rgba(100, 56, 67, 0.05);
    border-color: var(--pinky);
    color: var(--pinky);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(100, 56, 67, 0.15);
}

.event-button-notify:hover::before {
    left: 100%;
}

/* Responsive Design for Current Event */
@media (max-width: 768px) {
    .current-event {
        padding: 80px 0;
    }
    
    .current-event-content {
        padding: 50px 30px;
    }
    
    .event-title {
        font-size: 32px;
    }
    
    .event-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .date-text {
    font-size: 24px;
    }
    
    .event-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .event-button-primary,
    .event-button-secondary {
        width: 100%;
        text-align: center;
    }
    
    .current-event-content {
        border-radius: 25px 25px 0 0;
    }
    
    .event-button-notify {
        border-radius: 0 0 25px 25px;
        max-width: 100%;
    }
}

/* ===== PROGRAMS SECTION ===== */
.programs {
    background: linear-gradient(180deg, var(--main-white) 0%, var(--almost-white) 100%);
    padding: 60px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.programs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.programs-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--dark-violet);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.programs-description {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.programs-description-mobile {
    display: none;
}

.programs-description-desktop {
    display: block;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.program-card-wrapper {
    perspective: 1000px;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: programSlideIn 0.8s ease-out forwards;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.program-card-wrapper:nth-child(1) {
    animation-delay: 0.2s;
}

.program-card-wrapper:nth-child(2) {
    animation-delay: 0.4s;
}

.program-card-wrapper:nth-child(3) {
    animation-delay: 0.6s;
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 20px);
    max-width: calc(50% - 20px);
    box-sizing: border-box;
}

@keyframes programSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.program-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: 30px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    transform: rotateY(0deg);
}

.program-card-wrapper:hover .program-card {
    transform: rotateY(180deg);
}

.program-card-front,
.program-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    transform-style: preserve-3d;
}

.program-card-back {
    padding: 50px 40px;
    justify-content: flex-start;
}

.program-card-front {
    background: linear-gradient(135deg, var(--almost-white) 0%, #b8a0b8 100%);
}

.program-card.program-1 .program-card-front {
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    background-image: 
        linear-gradient(135deg, rgba(100, 56, 67, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%),
        url('../images/v centru svoje moci.webp');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
    color: var(--white);
}

.program-card.program-1 .program-card-front h3,
.program-card.program-1 .program-card-front .program-number {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.program-card.program-1 .program-card-front .program-number {
    color: rgba(255, 255, 255, 0.3);
}

.program-card.program-2 .program-card-front {
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    background-image: 
        linear-gradient(135deg, rgba(100, 56, 67, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%),
        url('../images/kreator.webp');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
    color: var(--white);
}

.program-card.program-2 .program-card-front h3,
.program-card.program-2 .program-card-front .program-number {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.program-card.program-2 .program-card-front .program-number {
    color: rgba(255, 255, 255, 0.3);
}

.program-card.program-3 .program-card-front {
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    background-image: 
        linear-gradient(135deg, rgba(100, 56, 67, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%),
        url('../images/jutranji obred.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
    color: var(--white);
}

.program-card.program-3 .program-card-front h3,
.program-card.program-3 .program-card-front .program-number {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.program-card.program-3 .program-card-front .program-number {
    color: rgba(255, 255, 255, 0.3);
}

.program-card-back {
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    transform: rotateY(180deg);
    color: var(--white);
    justify-content: flex-start;
    padding-top: 35px;
    padding-bottom: 35px;
}

.program-card.program-2 .program-card-back {
    background: linear-gradient(135deg, var(--dark-violet) 0%, #4a2d35 100%);
}

.program-card.program-3 .program-card-back {
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    color: var(--dark-violet);
}

.program-number {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: 20px;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 0;
    transition: all 0.6s ease;
}

.program-card-wrapper:hover .program-number {
    transform: scale(1.1) rotate(5deg);
    color: rgba(255, 255, 255, 0.3);
}

.program-card-front h3,
.program-card-back h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-violet);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.program-card-back h3 {
    color: var(--white);
    margin-bottom: 20px;
    width: 100%;
}

.program-back-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
    justify-content: space-between;
    min-height: 0;
}

.program-card-back p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    position: relative;
    z-index: 1;
    padding: 0 10px;
    flex-shrink: 0;
}

.program-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.program-button:hover {
    background-color: var(--white);
    color: var(--dark-violet);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.program-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--dark-violet) 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    z-index: 1;
}

/* Responsive Design for Programs */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .program-card-wrapper:nth-child(3) {
        grid-column: 1;
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
    }
    
    .program-card {
        min-height: 250px;
    }
    
    .program-card-front {
        padding: 40px 35px;
    }
    
    .program-card-back {
        padding: 35px 30px;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Hide desktop navigation and show burger menu */
    .desktop-nav,
    .desktop-social,
    .top-bar {
        display: none;
    }
    
    .header-consultation-btn {
        display: none;
    }
    
    .burger-menu {
    display: flex;
    }
    
    .header-content {
        justify-content: space-between;
    }
    
    header {
        padding: 15px 0;
    }
    
    .header-content img {
        width: 120px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none;
    }
}

@media (max-width: 768px) {
    .programs-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .programs-description-desktop {
        display: none;
    }
    
    .programs-description-mobile {
        display: block;
    }
    
    .programs-description {
        font-size: 14px;
        color: var(--text-light);
        text-align: center;
        margin-bottom: 40px;
        font-style: italic;
    }
    
    .program-card {
        min-height: 280px;
    }
    
    .program-card-front {
        padding: 35px 25px;
    }
    
    .program-card-back {
        padding: 30px 20px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .program-card-front h3,
    .program-card-back h3 {
        font-size: 24px;
    }
    
    .program-card-back p {
        font-size: 14px;
        padding: 0 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .program-back-content {
        gap: 15px;
        min-height: auto;
    }
    
    .program-button {
        padding: 10px 25px;
        font-size: 12px;
        margin-top: 15px;
        flex-shrink: 0;
    }
    
    .program-number {
        font-size: 60px;
        top: 15px;
        right: 25px;
    }
    
    /* Enable click to flip on mobile */
    .program-card-wrapper.mobile-flipped .program-card {
        transform: rotateY(180deg);
    }
}
/* ===== REAL LIFE EVENTS SECTION ===== */
.real-life-events {
    width: 100%;
    margin: 0;
    padding: 140px 0 400px 0;
    position: relative;
    z-index: 2;
    background-color: var(--hero-light);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 600px;
}

.events-content {
    position: relative;
    width: 50%;
    max-width: 600px;
    padding: 80px 60px 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--text-dark);
    z-index: 1;
}

.events-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: var(--dark-violet);
}

.events-content h2 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.events-content p {
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 500px;
}

.events-content .boxed-text {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(100, 56, 67, 0.2);
}

.events-cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 50px;
    background: var(--mid-violet);
    color: var(--almost-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(212, 165, 165, 0.3);
    font-size: 14px;
}

.events-cta-button:hover {
    background: var(--pinky);
    color: var(--dark-violet);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 165, 0.4);
}

@media (max-width: 1024px) {
    .real-life-events {
        justify-content: center;
    }
    
    .events-content {
        width: 100%;
        max-width: 800px;
        padding: 60px 40px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .real-life-events {
        padding: 100px 0;
        min-height: 500px;
    }
    
    .events-content {
        padding: 50px 30px;
    }
    
    .events-content h1 {
        font-size: 48px;
    }
    
    .events-content h2 {
        font-size: 18px;
    }
    
    .events-content p {
        font-size: 14px;
    }
}

/* ===== BOOK SECTION ===== */
.book-section {
    background: var(--almost-white);
    padding: 60px 0 200px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.book-section::before {
    display: none;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.book-offer-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(100, 56, 67, 0.3);
    z-index: 10;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(100, 56, 67, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(100, 56, 67, 0.4);
    }
}

.book-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.book-image {
    position: relative;
}

.book-cover {
    width: 300px;
    height: 450px;
    background: linear-gradient(135deg, var(--pinky), var(--almost-white));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.book-cover > div {
    text-align: center;
    width: 100%;
}

.book-cover:hover {
    transform: rotate(0deg) scale(1.02);
}

.book-free-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    z-index: 5;
    animation: bounce-badge 2s ease-in-out infinite;
}

@keyframes bounce-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.book-offer-header {
    margin-bottom: 25px;
}

.book-offer-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, rgba(221, 160, 221, 0.2) 100%);
    color: var(--mid-violet);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(100, 56, 67, 0.2);
}

.book-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--dark-violet);
    margin-bottom: 20px;
    font-weight: 700;
}

.book-content h3 {
    font-size: 32px;
    color: var(--mid-violet);
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.book-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.book-offer-highlight {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.6) 0%, rgba(230, 230, 250, 0.4) 100%);
    border-left: 4px solid var(--mid-violet);
    padding: 25px 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.book-offer-highlight p {
    margin-bottom: 12px;
    color: var(--dark-violet);
    font-size: 17px;
}

.book-offer-highlight p:last-child {
    margin-bottom: 0;
}

.book-offer-note {
    font-size: 14px !important;
    color: var(--text-light) !important;
    font-style: italic;
}

.book-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(100, 56, 67, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.book-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.book-button:hover::before {
    left: 100%;
}

.book-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(100, 56, 67, 0.4);
    background: linear-gradient(135deg, var(--dark-violet) 0%, var(--mid-violet) 100%);
}

.book-button:active {
    transform: translateY(-1px) scale(1);
}

.book-button svg {
    transition: transform 0.3s ease;
}

.book-button:hover svg {
    transform: translateX(5px);
}

/* ===== MONEY BACK GUARANTEE SECTION ===== */
.guarantee-section {
    background-color: var(--mid-violet);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.guarantee-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.guarantee-content {
    text-align: center;
    color: var(--white);
}

.guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 30px;
}

.guarantee-icon img {
    max-width: 200px;
    height: auto;
    display: block;
}

.guarantee-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.guarantee-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.guarantee-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.guarantee-detail-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.guarantee-detail-item svg {
    flex-shrink: 0;
    stroke-width: 3;
}

@media (max-width: 768px) {
    .guarantee-section {
        padding: 60px 0;
    }
    
    .guarantee-container {
        padding: 0 20px;
    }
    
    .guarantee-icon {
        margin-bottom: 20px;
    }
    
    .guarantee-icon img {
        max-width: 150px;
    }
    
    .guarantee-title {
        font-size: 36px;
    }
    
    .guarantee-text {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .guarantee-details {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .guarantee-detail-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===== BLOG SECTION ===== */
.blog {
    width: 100%;
    margin: 0;
    padding: 140px 0 200px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--main-white) 0%, var(--hero-light) 100%);
    overflow: hidden;
}

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

.blog-header {
    text-align: center;
    margin-bottom: 70px;
}

.blog-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--dark-violet);
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.blog-container .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-card {
    background-color: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(100, 56, 67, 0.2);
    border-color: var(--almost-white);
}

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

.blog-card-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
}

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

.blog-card-emoji {
    font-size: 64px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-violet);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.blog-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--pinky);
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--dark-violet);
    margin-bottom: 15px;
    line-height: 1.3;
    flex-grow: 0;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mid-violet);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
    pointer-events: none;
}

.blog-card-link:hover .blog-read-more-link {
    color: var(--dark-violet);
    gap: 12px;
}

.blog-read-more-link svg {
    transition: transform 0.3s ease;
}

.blog-read-more-link:hover svg {
    transform: translateX(5px);
}

.blog-footer {
    text-align: center;
    margin-top: 50px;
}

.more-posts-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    border: none;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(100, 56, 67, 0.25);
}

.more-posts-btn:hover {
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(100, 56, 67, 0.35);
}

.more-posts-btn svg {
    transition: transform 0.3s ease;
}

.more-posts-btn:hover svg {
    transform: translateX(5px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    margin: 0;
    padding: 100px 0 0 0;
    width: 100%;
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.15' stroke-width='1'%3E%3Cpath d='M30 0L30 60M0 30L60 30'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

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

.testimonials-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--white);
    margin: 0 0 80px 0;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    margin-bottom: 80px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 250, 0.98) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--pinky) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.testimonial-card:hover::before {
    opacity: 0.2;
    transform: scale(1.2);
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: var(--pinky);
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    font-weight: 700;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark-violet);
    line-height: 1.8;
    margin: 0 0 35px 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.testimonial-author::before {
    content: '';
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--pinky) 0%, transparent 100%);
}

.author-name {
    font-size: 18px;
    color: var(--mid-violet);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 100px 0 150px 0;
    }
    
    .testimonials-section h2 {
        font-size: 42px;
        margin: 0 0 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 20px;
    }
    
    .newsletter-form-wrapper {
        margin-top: 60px;
        padding-top: 60px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .newsletter-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .newsletter-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-form-row {
    flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form-row-email {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .testimonial-quote {
        font-size: 100px;
        top: 15px;
        left: 25px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    margin: 0;
    padding: 100px 0 0 0;
    width: 100%;
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.15' stroke-width='1'%3E%3Cpath d='M30 0L30 60M0 30L60 30'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

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

.testimonials-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--white);
    margin: 0 0 80px 0;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    margin-bottom: 80px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 250, 0.98) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--pinky) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.testimonial-card:hover::before {
    opacity: 0.2;
    transform: scale(1.2);
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: var(--pinky);
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    font-weight: 700;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark-violet);
    line-height: 1.8;
    margin: 0 0 35px 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.testimonial-author::before {
    content: '';
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--pinky) 0%, transparent 100%);
}

.author-name {
    font-size: 18px;
    color: var(--mid-violet);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 100px 0;
    }
    
    .testimonials-section h2 {
        font-size: 42px;
        margin: 0 0 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 20px;
    }
    
    .testimonial-quote {
        font-size: 100px;
        top: 15px;
        left: 25px;
    }
}

/* ===== SHOP SECTION ===== */
.shop {
    width: 100%;
    margin: 0;
    padding: 140px 0 400px 0;
    position: relative;
    z-index: 2;
    background-color: var(--main-white);
}

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

.shop-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--dark-violet);
    margin-bottom: 20px;
}

.shop-container .shop-intro {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 800px;
}

.shop-container .shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--almost-white), var(--main-white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    color: var(--pinky);
    margin-bottom: 10px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 10px;
}

.product-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 2px solid var(--pinky);
    color: var(--pinky);
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-button:hover {
    background-color: var(--pinky);
    color: var(--white);
}

.view-all-products {
    display: block;
    width: 200px;
    margin: 60px auto 0;
    padding: 15px 40px;
    background-color: var(--dark-violet);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.view-all-products:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===== NEWSLETTER SECTION ===== */
/* ===== NEW SECTIONS ===== */
.jaz-zenska-section,
.aktualno-section,
.intervju-section,
.e-trgovina-section,
.stik-z-nami-section {
    padding: 60px 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
    background: var(--white);
    overflow: visible;
}

.stik-z-nami-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background-image: url('../images/background-decorations.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.jaz-zenska-section,
.stik-z-nami-section {
    padding: 0 0 200px 0;
}

/* Featured Steps Showcase */
.jaz-zenska-featured {
    margin-bottom: 120px;
}

.jaz-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--dark-violet);
    margin-bottom: 80px;
    text-align: center;
    position: relative;
}

.jaz-steps-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(100, 56, 67, 0.2);
    max-width: 100%;
    width: 100%;
}

.jaz-step-featured {
    position: relative;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-height: 600px;
    opacity: 0;
    transform: translateX(-30px);
}

.jaz-step-featured.animate-in {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.jaz-step-featured[data-step="1"].animate-in {
    transition-delay: 0s;
}

.jaz-step-featured[data-step="2"].animate-in {
    transition-delay: 0.2s;
}

.jaz-step-featured[data-step="3"].animate-in {
    transition-delay: 0.4s;
}

.jaz-step-featured[data-step="4"].animate-in {
    transition-delay: 0.6s;
}

.jaz-step-featured[data-step="1"] {
    background: linear-gradient(135deg, rgba(200, 142, 167, 0.5) 0%, rgba(153, 98, 122, 0.4) 100%);
}

.jaz-step-featured[data-step="2"] {
    background: linear-gradient(135deg, rgba(153, 98, 122, 0.6) 0%, rgba(100, 56, 67, 0.5) 100%);
}

.jaz-step-featured[data-step="3"] {
    background: linear-gradient(135deg, rgba(100, 56, 67, 0.7) 0%, rgba(153, 98, 122, 0.6) 100%);
}

.jaz-step-featured[data-step="4"] {
    background: linear-gradient(135deg, rgba(100, 56, 67, 0.85) 0%, rgba(74, 45, 53, 0.75) 100%);
}

.step-bg-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 140px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--white);
}

.jaz-step-featured h4 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.jaz-step-featured p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    flex-grow: 1;
}

.jaz-featured-btn {
    display: inline-block;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: auto;
}

.jaz-featured-btn:hover {
    background: var(--white);
    color: var(--dark-violet);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* About Showcase */
.jaz-about-showcase {
    margin: 120px 0;
    position: relative;
}

.jaz-about-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background-image: url('../images/background-decorations.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.jaz-about-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
    background: var(--white);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(100, 56, 67, 0.15);
    position: relative;
    overflow: hidden;
}

.jaz-about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--pinky) 0%, var(--mid-violet) 50%, var(--dark-violet) 100%);
    z-index: 1;
}



.jaz-about-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: contain;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(100, 56, 67, 0.2);
    border: 3px solid var(--almost-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jaz-about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(100, 56, 67, 0.3);
}

.jaz-about-text {
    padding: 0;
    text-align: left;
    background: transparent;
    max-width: 500px;
    flex-shrink: 0;
    position: relative;
}

.jaz-about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--dark-violet);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.jaz-about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pinky) 0%, var(--mid-violet) 100%);
    border-radius: 2px;
}

.jaz-about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 25px;
}

.jaz-about-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(100, 56, 67, 0.2);
    margin-top: 10px;
}

.jaz-about-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 56, 67, 0.3);
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
}

.jaz-vision-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 100%;
    margin-top: 0;
}

.vision-card,
.mission-card {
    background: var(--white);
    padding: 50px 45px;
    border-radius: 16px;
    border: 1px solid rgba(100, 56, 67, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--mid-violet), var(--pinky));
    opacity: 0.6;
}

.vision-card:hover,
.mission-card:hover {
    box-shadow: 0 4px 16px rgba(100, 56, 67, 0.08);
    border-color: rgba(100, 56, 67, 0.15);
}

.vision-card h3,
.mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-violet);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.vision-card p,
.mission-card p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-dark);
    font-weight: 400;
    margin: 0;
}

/* Media Showcase */
.jaz-media-showcase {
    margin-top: 120px;
    margin-bottom: 60px;
    position: relative;
}

.jaz-media-showcase::before {
    content: '';
    position: absolute;
    top: 70%;
    left: -100px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background-image: url('../images/background-decorations.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.jaz-media-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: var(--dark-violet);
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.jaz-media-featured {
    display: flex;
    justify-content: center;
    max-width: 100%;
}

.jaz-media-hero-card {
    width: 100%;
    max-width: 1200px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(100, 56, 67, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.jaz-media-hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(100, 56, 67, 0.3);
}

.jaz-media-image-mobile {
    display: none;
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
}

.jaz-media-content-mobile {
    display: none;
}

.jaz-media-image {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: transparent;
}

.jaz-media-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.jaz-media-slide.active {
    opacity: 1;
    z-index: 1;
}

.jaz-media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
}

@media (max-width: 768px) {
    .jaz-media-showcase {
        margin-top: 80px;
    }
    
    .jaz-media-title {
        font-size: 42px;
        margin-bottom: 40px;
    }
    
    .jaz-media-hero-card {
        flex-direction: column;
        max-width: 100%;
        margin: 0;
        border-radius: 20px;
        overflow: hidden;
    }
    
    /* Hide desktop overlay on mobile */
    .jaz-media-image {
        display: none;
    }
    
    /* Show mobile image first */
    .jaz-media-image-mobile {
        display: block;
        width: 100%;
        height: 200px;
        background: transparent;
        border-radius: 20px 20px 0 0;
        position: relative;
        overflow: hidden;
    }
    
    .jaz-media-image-mobile .jaz-media-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        z-index: 1;
    }
    
    .jaz-media-image-mobile .jaz-media-slide.active {
        opacity: 1;
        z-index: 1;
        order: 1;
    }
    
    /* Show mobile content below image */
    .jaz-media-content-mobile {
        display: block;
        width: 100%;
        padding: 40px 25px;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        border-radius: 0 0 20px 20px;
        margin-top: -2px;
        order: 2;
        text-align: center;
    }
    
    .jaz-media-content-mobile h4 {
    font-family: 'Playfair Display', serif;
        font-size: 24px;
        color: var(--white);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .jaz-media-content-mobile p {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 25px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .jaz-media-content-mobile .jaz-media-button {
        padding: 14px 30px;
        font-size: 12px;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
        display: inline-block;
    }
}

.jaz-media-hero-card:hover .jaz-media-image img {
    transform: scale(1.05);
}

.jaz-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 56, 67, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    z-index: 10;
    justify-content: center;
    padding: 60px;
}

.jaz-media-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
    z-index: 11;
    position: relative;
}

.jaz-media-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.jaz-media-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.jaz-media-button {
    display: inline-block;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.jaz-media-button:hover {
    background: var(--white);
    color: var(--dark-violet);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.jaz-zenska-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    color: var(--dark-violet);
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jaz-zenska-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.jaz-zenska-main-title::after {
    display: none;
}

.intervju-section,
.e-trgovina-section {
    background-color: var(--hero-light);
}

.aktualno-section {
    background: linear-gradient(180deg, var(--main-white) 0%, var(--hero-light) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.aktualno-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--pinky) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
}

.aktualno-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--mid-violet) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
}

.jaz-zenska-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
}

.jaz-zenska-main-title {
    margin-left: -40px;
    margin-right: -40px;
}

.aktualno-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.intervju-container,
.e-trgovina-container,
.stik-z-nami-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.stik-z-nami-wrapper {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    gap: 40px;
    align-items: stretch;
    position: relative;
    min-height: 600px;
}

.stik-z-nami-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(100, 56, 67, 0.15);
    background: var(--almost-white);
    height: 600px;
    display: block;
}

.stik-z-nami-image img {
    width: 200%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
    margin: 0;
    padding: 0;
}

.stik-z-nami-content {
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--hero-light) 100%);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(100, 56, 67, 0.15);
    border: 2px solid var(--almost-white);
    overflow: hidden;
}

.stik-z-nami-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--pinky) 0%, var(--mid-violet) 50%, var(--dark-violet) 100%);
    pointer-events: none;
}

.stik-z-nami-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(100, 56, 67, 0.2);
}


.stik-z-nami-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
}

.stik-z-nami-flower,
.stik-z-nami-sparkle,
.stik-z-nami-heart {
    position: absolute;
    font-size: 32px;
    opacity: 0.08;
}

.stik-z-nami-flower {
    top: 30px;
    left: 8%;
}

.stik-z-nami-sparkle {
    top: 20%;
    right: 12%;
    font-size: 24px;
}

.stik-z-nami-heart {
    bottom: 25%;
    left: 6%;
    font-size: 28px;
}

.stik-z-nami-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--dark-violet);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.stik-z-nami-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stik-z-nami-instruction {
    font-size: 16px !important;
    color: var(--mid-violet) !important;
    font-weight: 500 !important;
    margin-bottom: 35px !important;
    padding: 15px 20px;
    background: rgba(200, 142, 167, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--mid-violet);
    text-align: left !important;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stik-z-nami-instruction::before {
    content: '📅';
    margin-right: 8px;
    font-size: 18px;
}

.stik-z-nami-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(100, 56, 67, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.stik-z-nami-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.stik-z-nami-button:hover::before {
    left: 100%;
}

.stik-z-nami-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(100, 56, 67, 0.4);
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
}

.stik-z-nami-button:active {
    transform: translateY(-1px) scale(1.02);
}

.stik-z-nami-button svg {
    transition: transform 0.3s ease;
}

.stik-z-nami-button:hover svg {
    transform: translateX(5px);
}

/* Animation States */
.stik-z-nami-wrapper.animate .stik-z-nami-image {
    transform: translateX(-150%);
    opacity: 0;
}

.stik-z-nami-wrapper.animate .stik-z-nami-content {
    transform: translateX(150%);
    opacity: 0;
}

.stik-z-nami-image,
.stik-z-nami-content {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

/* Scheduling Interface */
.scheduling-interface {
    position: absolute;
    top: calc(50% + 60px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheduling-interface.active {
    opacity: 1;
    visibility: visible;
}

.scheduling-content {
    background: var(--white);
    border-radius: 30px;
    padding: 40px 35px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(100, 56, 67, 0.2);
    text-align: center;
}

.scheduling-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--dark-violet);
    margin-bottom: 25px;
}

/* Calendar Styles */
.calendar-container {
    margin-bottom: 25px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.calendar-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark-violet);
    margin: 0;
}

.calendar-nav-btn {
    background: var(--mid-violet);
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: var(--dark-violet);
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--dark-violet);
    padding: 8px 4px;
    font-size: 12px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    color: var(--dark-violet);
    background: var(--almost-white);
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: rgba(100, 56, 67, 0.1);
    transform: scale(1.05);
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--mid-violet);
    color: var(--white);
    font-weight: 600;
}

.calendar-day.today {
    border: 2px solid var(--mid-violet);
    box-sizing: border-box;
}

.calendar-day.today.disabled {
    opacity: 0.5;
    border: 2px solid var(--mid-violet);
}

.calendar-day.weekend {
    position: relative;
}

.calendar-day.weekend::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    pointer-events: none;
    z-index: 1;
}

.calendar-day.weekend.selected {
    background: var(--mid-violet) !important;
    color: var(--white);
}

.calendar-day.weekend.selected::before {
    display: none;
}

.calendar-day.weekend.today {
    border: 2px solid var(--mid-violet);
}

/* Time Slots */
.time-slots-container {
    margin-bottom: 20px;
}

.time-slots-container h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--dark-violet);
    margin-bottom: 15px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
}

.time-slot {
    padding: 10px 16px;
    background: var(--almost-white);
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    color: var(--dark-violet);
    text-align: center;
}

.time-slot:hover:not(.disabled) {
    background: rgba(100, 56, 67, 0.1);
    border-color: var(--mid-violet);
}

.time-slot.selected {
    background: var(--mid-violet);
    color: var(--white);
    border-color: var(--mid-violet);
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.selected-info {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(100, 56, 67, 0.05);
    border-radius: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected-info p {
    margin: 0;
    color: var(--dark-violet);
    font-size: 14px;
}

.form-inputs-container {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-input-container {
    margin-bottom: 0;
    text-align: left;
}

.email-input-container label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-violet);
    margin-bottom: 8px;
}

.user-email-input,
.user-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--almost-white);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark-violet);
    background: var(--white);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.user-email-input:focus,
.user-input:focus {
    outline: none;
    border-color: var(--mid-violet);
    box-shadow: 0 0 0 3px rgba(100, 56, 67, 0.1);
}

.user-email-input::placeholder,
.user-input::placeholder {
    color: rgba(100, 56, 67, 0.4);
}

.schedule-call-btn {
    padding: 18px 45px;
    background: var(--mid-violet);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(100, 56, 67, 0.2);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.schedule-call-btn:hover:not(:disabled) {
    background: var(--dark-violet);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(100, 56, 67, 0.3);
}

.schedule-call-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.privacy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
}

.privacy-checkbox-label span {
    font-size: 11px;
    font-style: italic;
    line-height: 1.4;
    color: var(--text-light);
}

/* Success Message */
.scheduling-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.scheduling-success.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
    padding: 60px 40px;
    max-width: 600px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--mid-violet);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--dark-violet);
    margin-bottom: 20px;
}

.success-content p {
    font-size: 18px;
    color: var(--dark-violet);
    line-height: 1.6;
}

.aktualno-header {
    text-align: center;
    margin-bottom: 70px;
}

.jaz-zenska-section h2,
.aktualno-section h2,
.intervju-section h2,
.e-trgovina-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--dark-violet);
    margin-bottom: 15px;
    text-align: center;
}

.aktualno-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.jaz-zenska-subsection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* ===== CREATIVE AKTUALNO GRID ===== */
.aktualno-creative-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    gap: 30px;
    margin-top: 60px;
}

/* Large Featured Card - Takes left side, 3 rows */
.aktualno-card-large {
    grid-column: 1 / 7;
    grid-row: 1 / 4;
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 30px;
    padding: 60px 50px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(100, 56, 67, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--almost-white);
}

.aktualno-card-large.featured {
    background: linear-gradient(135deg, rgba(200, 142, 167, 0.08) 0%, rgba(153, 98, 122, 0.08) 50%, var(--white) 100%);
    border-color: var(--pinky);
}

.aktualno-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.aktualno-card-large:hover .aktualno-card-bg {
    opacity: 0.05;
}

.aktualno-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.aktualno-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.aktualno-icon {
    font-size: 80px;
    line-height: 1;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.aktualno-card-large:hover .aktualno-icon {
    transform: scale(1.1) rotate(5deg);
}

.aktualno-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--pinky) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

.aktualno-card-large h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--dark-violet);
    margin-bottom: 20px;
    line-height: 1.2;
}

.aktualno-card-large p {
    font-size: 17px;
    line-height: 2.2;
    color: var(--text-light);
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: justify;
    text-align-last: left;
    word-spacing: 0.1em;
    letter-spacing: 0.01em;
}

.aktualno-card-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

/* Medium Cards */
.aktualno-card-medium {
    grid-column: 7 / 13;
    position: relative;
    background: var(--white);
    border-radius: 25px;
    padding: 45px 40px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(100, 56, 67, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--almost-white);
    display: flex;
    flex-direction: column;
}

.aktualno-card-medium:nth-of-type(2) {
    grid-row: 1;
}

.aktualno-card-medium:nth-of-type(3) {
    grid-row: 2;
}

.aktualno-card-medium:nth-of-type(4) {
    grid-row: 3;
}

.aktualno-card-medium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(100, 56, 67, 0.2);
    border-color: var(--pinky);
}

.aktualno-card-medium:hover .aktualno-card-bg {
    opacity: 0.03;
}

.aktualno-card-medium .aktualno-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.aktualno-card-medium h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--dark-violet);
    margin-bottom: 18px;
    line-height: 1.3;
}

.aktualno-card-medium p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
    flex-grow: 1;
}

.aktualno-card-medium.with-button {
    grid-column: 7 / 10;
    grid-row: 2;
}


.aktualno-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--pinky) 0%, transparent 100%);
    border-radius: 0 25px 0 100px;
    opacity: 0.1;
    z-index: 0;
}


/* Creative Button */
.aktualno-button-creative {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
    box-shadow: 0 8px 20px rgba(100, 56, 67, 0.3);
    position: relative;
    overflow: hidden;
}

.aktualno-button-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.aktualno-button-creative:hover::before {
    left: 100%;
}

.aktualno-button-creative:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(100, 56, 67, 0.4);
    background: linear-gradient(135deg, var(--dark-violet) 0%, var(--mid-violet) 100%);
}

.aktualno-button-creative svg {
    transition: transform 0.3s ease;
}

.aktualno-button-creative:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .aktualno-container {
        padding: 60px 30px;
    }
    
    .aktualno-creative-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .aktualno-card-large {
        grid-column: 1;
        grid-row: auto;
        padding: 50px 40px;
    }
    
    .aktualno-card-large h3 {
        font-size: 32px;
    }
    
    .aktualno-card-large p {
        font-size: 16px;
        line-height: 2;
    }
    
    .aktualno-card-medium {
        grid-column: 1;
        grid-row: auto;
        padding: 40px 35px;
    }
    
    .aktualno-card-medium h3 {
        font-size: 26px;
    }
    
    .aktualno-card-medium p {
        font-size: 15px;
    }
    
    .aktualno-card-medium.with-button {
        grid-column: 1;
        grid-row: auto;
    }
    
    /* Jaz Zenska Steps Showcase - Tablet */
    .jaz-steps-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .jaz-step-featured {
        padding: 50px 40px;
        min-height: 500px;
    }
    
    .jaz-step-featured[data-step="1"] {
        border-radius: 20px 0 0 0;
    }
    
    .jaz-step-featured[data-step="2"] {
        border-radius: 0 20px 0 0;
    }
    
    .jaz-step-featured[data-step="3"] {
        border-radius: 0 0 0 20px;
    }
    
    .jaz-step-featured[data-step="4"] {
        border-radius: 0 0 20px 0;
    }
    
    .jaz-step-featured h4 {
        font-size: 28px;
    }
    
    .jaz-step-featured p {
        font-size: 16px;
    }
    
    .step-bg-number {
        font-size: 100px;
    }
}

@media (max-width: 768px) {
    /* General Mobile Improvements */
    body {
        font-size: 16px;
    }
    
    /* Top Bar Mobile */
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar-content {
        padding: 0 15px;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .top-bar a {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    /* Header Mobile */
    header {
        padding: 15px 0;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .header-consultation-btn {
        display: none; /* Hide on mobile, use burger menu instead */
    }
    
    .burger-menu {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        height: auto;
        min-height: 500px;
        padding: 60px 20px;
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 40px 25px;
        margin: 0;
        border-radius: 20px;
    }
    
    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    /* Aktualno Section */
    .aktualno-section {
        padding: 80px 0;
    }
    
    .aktualno-container {
        padding: 0 20px;
    }
    
    .aktualno-header {
        margin-bottom: 40px;
    }
    
    .aktualno-creative-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .aktualno-card-large,
    .aktualno-card-medium {
        grid-column: 1;
        grid-row: auto;
    }
    
    .aktualno-card-large {
        padding: 40px 25px;
    }
    
    .aktualno-card-large h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .aktualno-card-large p {
        font-size: 15px;
        line-height: 2;
        margin-bottom: 25px;
    }
    
    .aktualno-card-medium {
        padding: 35px 25px;
    }
    
    .aktualno-card-medium h3 {
        font-size: 24px;
    }
    
    .aktualno-card-medium p {
        font-size: 15px;
    }
    
    .aktualno-section h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .aktualno-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .aktualno-icon {
        font-size: 56px !important;
    }
    
    .aktualno-card-large .aktualno-icon {
        font-size: 64px !important;
    }
    
    .aktualno-button-creative {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    /* Programs Section */
    .programs-section {
        padding: 80px 0;
    }
    
    .programs-container {
        padding: 0 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .program-card-wrapper:nth-child(3) {
        grid-column: 1;
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
    }
    
    .program-card {
        min-height: 280px;
    }
    
    .program-card-front,
    .program-card-back {
        padding: 40px 25px;
    }
    
    .program-card-front h3,
    .program-card-back h3 {
        font-size: 22px;
    }
    
    .program-card-back p {
        font-size: 14px;
    }
    
    /* Current Event Section */
    .current-event {
        padding: 80px 0;
    }
    
    .current-event-content {
        padding: 40px 25px;
        margin-top: 30px;
    }
    
    .event-title {
        font-size: 28px;
    }
    
    .event-description {
        font-size: 15px;
    }
    
    /* Book Section */
    .book-section {
        padding: 80px 0;
    }
    
    .book-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .book-offer-badge {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .book-cover {
        width: 220px;
        height: 330px;
        margin: 0 auto;
    }
    
    .book-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .book-content h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .book-content h3 {
        font-size: 22px;
    margin-bottom: 20px;
        text-align: center;
    }
    
    .book-content p {
        font-size: 15px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .book-button {
        padding: 16px 35px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .book-offer-header {
        text-align: center;
    }
    
    .book-offer-tag {
        text-align: center;
    }
    
    .book-offer-highlight {
        text-align: center;
        padding: 20px 20px;
        margin: 25px 0;
    }
    
    .book-offer-highlight p {
        text-align: center;
    }
    
    .book-offer-note {
        text-align: center;
    }
    
    .book-offer-highlight p {
        font-size: 15px;
    }
    
    /* Stik z nami Section */
    .stik-z-nami-section {
        padding: 80px 0;
    }
    
    .stik-z-nami-container {
        padding: 0 20px;
    }
    
    .stik-z-nami-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }
    
    .scheduling-content {
        padding: 40px 20px;
        max-width: 100%;
    }
    
    .scheduling-content h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .calendar-header h4 {
        font-size: 20px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
    
    .stik-z-nami-image {
        min-height: 300px;
        border-radius: 25px;
        order: 1;
    }
    
    .stik-z-nami-content {
        padding: 50px 30px;
        border-radius: 25px;
        order: 2;
    }
    
    .stik-z-nami-content h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .stik-z-nami-content p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .stik-z-nami-instruction {
        font-size: 14px !important;
        padding: 12px 15px !important;
        margin-bottom: 25px !important;
    }
    
    .stik-z-nami-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
    
    .stik-z-nami-button {
        padding: 16px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stik-z-nami-flower,
    .stik-z-nami-sparkle,
    .stik-z-nami-heart {
        font-size: 24px;
    }
    
    /* Jaz Zenska Section */
    .jaz-zenska-section {
        padding: 80px 0;
    }
    
    /* Footer */
    footer {
        padding: 160px 0 60px;
        position: relative;
        min-height: auto;
    }
    
    .footer-logo-text {
        margin-top: -120px;
        margin-bottom: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .footer-section {
        margin-bottom: 25px;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-bottom {
        display: none;
    }
    
    .footer-social {
        display: none;
    }
    
    .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    /* Add extra padding to last sections for footer visibility */
    .stik-z-nami-section {
        padding-bottom: 150px;
    }
    
    .blog {
        padding-bottom: 150px;
    }
    
    .book-section {
        padding-bottom: 150px;
    }
    
    .real-life-events {
        padding-bottom: 150px;
    }
    
    .testimonials-section {
        padding-bottom: 150px;
    }
    
    /* Real Life Events */
    .real-life-events {
        padding: 80px 0;
        min-height: auto;
    }
    
    .events-content {
        width: 100%;
        padding: 50px 25px;
        text-align: center;
        align-items: center;
    }
    
    .events-content h1 {
        font-size: 40px;
    }
    
    .events-content h2 {
        font-size: 18px;
    }
    
    .events-content p {
        font-size: 15px;
        max-width: 100%;
    }
    
    .events-cta-button {
        padding: 16px 40px;
        font-size: 13px;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Blog Section */
    .blog {
        padding: 80px 0;
    }
    
    .blog-container {
        padding: 0 20px;
    }
    
    .blog-header h2 {
        font-size: 36px;
    }
    
    .blog-subtitle {
        font-size: 16px;
    }
    
    .blog-container .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-card-image {
        height: 220px;
    }
    
    .blog-card-emoji {
        font-size: 48px;
    }
    
    .blog-content {
        padding: 25px;
    }
    
    .blog-content h3 {
        font-size: 24px;
    }
    
    .more-posts-btn {
        padding: 16px 35px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Jaz Zenska Steps Showcase - Mobile */
    .jaz-steps-showcase {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 0;
    }
    
    .jaz-step-featured {
        padding: 50px 30px;
        min-height: auto;
        border-radius: 0;
    }
    
    .jaz-step-featured[data-step="1"] {
        border-radius: 20px 20px 0 0;
    }
    
    .jaz-step-featured[data-step="2"] {
        border-radius: 0;
    }
    
    .jaz-step-featured[data-step="3"] {
        border-radius: 0;
    }
    
    .jaz-step-featured[data-step="4"] {
        border-radius: 0 0 20px 20px;
    }
    
    .jaz-step-featured h4 {
        font-size: 24px;
    }
    
    .jaz-step-featured p {
        font-size: 15px;
    }
    
    .step-bg-number {
        font-size: 80px;
        top: 15px;
        right: 15px;
    }
    
    /* Jaz About Hero - Mobile */
    .jaz-about-hero {
        flex-direction: column;
        gap: 40px;
        padding: 40px 25px;
    }
    
    .jaz-about-hero::before {
        width: 100%;
        height: 5px;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, var(--pinky) 0%, var(--mid-violet) 50%, var(--dark-violet) 100%);
    }
    
    .jaz-about-image {
        max-width: 250px;
        width: 100%;
        height: auto;
        border-radius: 20px;
    }
    
    .jaz-about-text {
        padding: 0;
        text-align: center;
    }
    
    .jaz-about-text h3 {
        font-size: 32px;
    }
    
    .jaz-about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .jaz-about-text p {
        font-size: 16px;
    }
    
    .jaz-about-button {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    /* Vision Mission - Mobile */
    .jaz-vision-mission {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vision-card,
    .mission-card {
        padding: 40px 30px;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .vision-card p,
    .mission-card p {
        font-size: 15px;
        line-height: 1.7;
    }
}


.jaz-zenska-subsection h3,
.stik-subsection h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--dark-violet);
    margin-bottom: 20px;
}

.jaz-zenska-subsection p,
.aktualno-subsection p,
.stik-subsection p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.media-grid,
.intervju-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.media-card,
.intervju-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--almost-white);
}

.media-card h4,
.intervju-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark-violet);
    margin-bottom: 15px;
}

.media-card p,
.intervju-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.intervju-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background-color: var(--mid-violet);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.intervju-button:hover {
    background-color: var(--dark-violet);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--almost-white);
}

.product-image {
    font-size: 48px;
    margin-bottom: 15px;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark-violet);
    margin-bottom: 12px;
}

.price {
    font-size: 18px;
    color: var(--mid-violet);
    font-weight: 600;
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 8px;
    font-size: 16px;
}

.product-button {
    padding: 10px 25px;
    background-color: var(--mid-violet);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.product-button:hover {
    background-color: var(--dark-violet);
}

.view-all-products {
    display: block;
    width: 180px;
    margin: 30px auto 0;
    padding: 12px 30px;
    background-color: var(--mid-violet);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.view-all-products:hover {
    background-color: var(--dark-violet);
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-info strong {
    color: var(--dark-violet);
    font-weight: 600;
}

/* Golden Separator Line */
.testimonials-newsletter-separator {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, #FFD700, #D4AF37, transparent);
    margin: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
    display: block;
}

/* Newsletter Form inside Testimonials Section */
.newsletter-form-wrapper {
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: url('../images/psenica.png') center center / cover no-repeat;
    border-radius: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.newsletter-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 56, 67, 0.4) 0%, rgba(153, 98, 122, 0.3) 100%);
    border-radius: 0;
    z-index: -1;
}


.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--white);
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    margin-bottom: 8px !important;
}

.newsletter-description {
    color: var(--white);
    font-size: 18px;
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 50px !important;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-form-row {
    display: flex;
    gap: 20px;
}

.newsletter-privacy-checkbox {
    margin: 20px 0;
    text-align: center;
}

.newsletter-checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
}

.newsletter-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    flex-grow: 0;
}

.newsletter-form-row-email {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.newsletter-form-row-email input {
    flex: 1;
}

.newsletter-form-row-email button {
    flex-shrink: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    padding: 16px 45px;
    background-color: var(--white);
    color: var(--dark-violet);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.95);
}

.newsletter-note {
    color: var(--white);
    font-size: 13px;
    margin-top: 25px;
    opacity: 0.85;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-violet);
    padding: 60px 0 40px;
    color: var(--white);
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
}

.footer-logo-text {
    text-align: center;
    margin-bottom: 20px;
    margin-top: -40px;
    position: relative;
    padding-bottom: 0px;
    z-index: 2;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.footer-logo-link:hover {
    transform: scale(1.05);
    opacity: 1;
}

.footer-logo-text img {
    max-width: 250px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover img {
    opacity: 1;
}

.footer-logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pinky), transparent);
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 20px;
    justify-items: center;
}

.footer-heart-text {
    text-align: center;
    color: var(--white);
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
    font-size: 16px;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--pinky);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

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

.footer-social a:hover {
    background-color: var(--pinky);
}

.footer-social img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* ===== ANIMATIONS & UTILITIES ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(100, 56, 67, 0.4);
    transition: all 0.3s ease, background 0.5s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    background-size: 200% 200%;
    background-position: 0% 50%;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(100, 56, 67, 0.5);
    background: linear-gradient(135deg, var(--dark-violet) 0%, var(--mid-violet) 100%);
    background-size: 200% 200%;
    background-position: 100% 50%;
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.back-to-top:hover svg {
    transform: translateY(-3px);
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(100, 56, 67, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(100, 56, 67, 0.7);
    }
}

.back-to-top.show {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 500px;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 60px 20px;
        align-items: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 48px;
    }

    .hero h2 {
        font-size: 18px;
    }

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

    .why-join-steps {
        grid-template-columns: 1fr;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .service-tabs {
        flex-direction: column;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .book-container {
        grid-template-columns: 1fr;
    }
    
    .footer-logo-text {
        font-size: 48px;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        padding-top: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== EVENT MODAL ===== */
.event-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.event-modal.active {
    display: block;
}

.event-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.event-modal-content {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    padding: 60px 50px;
    border: 2px solid var(--light-pink);
    animation: slideUp 0.4s ease-out;
}

.event-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 36px;
    color: var(--mid-violet);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.event-modal-close:hover {
    background: var(--light-pink);
    color: var(--dark-violet);
    transform: rotate(90deg);
}

.event-modal-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-pink);
}

.event-modal-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--mid-violet);
    margin-bottom: 15px;
}

.event-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-violet);
    line-height: 1.2;
    margin: 0;
}

.event-modal-body {
    color: var(--dark-violet);
    line-height: 1.8;
}

.event-modal-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--mid-violet);
    margin-bottom: 30px;
    padding: 15px;
    background: linear-gradient(135deg, var(--almost-white) 0%, var(--main-white) 100%);
    border-radius: 15px;
}

.event-modal-date svg {
    width: 24px;
    height: 24px;
    color: var(--mid-violet);
}

.event-modal-description {
    margin-bottom: 40px;
}

.event-modal-description p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--dark-violet);
}

.event-modal-program {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--almost-white) 0%, var(--main-white) 100%);
    border-radius: 20px;
    border-left: 4px solid var(--mid-violet);
}

.event-modal-program h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-violet);
    margin-bottom: 20px;
}

.event-modal-program ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-modal-program ul li {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--dark-violet);
}

.event-modal-program ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--mid-violet);
    font-weight: bold;
    font-size: 20px;
}

.event-modal-program ul li ul {
    margin-top: 10px;
    margin-left: 20px;
}

.event-modal-program ul li ul li {
    font-size: 15px;
    margin-bottom: 10px;
}

.event-modal-program strong {
    color: var(--mid-violet);
    font-weight: 600;
}

.event-modal-program em {
    color: var(--dark-violet);
    font-style: italic;
}

.event-modal-price {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--pinky) 0%, rgba(255, 200, 220, 0.3) 100%);
    border-radius: 20px;
    border-left: 4px solid var(--mid-violet);
}

.event-modal-price h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-violet);
    margin-bottom: 20px;
}

.event-modal-price p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--dark-violet);
}

.event-modal-price ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.event-modal-price ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--dark-violet);
}

.event-modal-price ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mid-violet);
    font-weight: bold;
}

.event-modal-price strong {
    color: var(--mid-violet);
    font-weight: 600;
}

.event-modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-pink);
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .event-modal-content {
        margin: 20px;
        padding: 40px 30px;
        border-radius: 20px;
    }

    .event-modal-title {
        font-size: 32px;
    }

    .event-modal-program,
    .event-modal-price {
        padding: 20px;
    }

    .event-modal-program h3,
    .event-modal-price h3 {
        font-size: 24px;
    }

    .event-modal-actions {
        flex-direction: column;
    }

    .event-modal-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 25px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--pinky);
}

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

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

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

.cookie-banner-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--dark-violet);
    margin-bottom: 10px;
}

.cookie-banner-text p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 8px;
}

.cookie-banner-links {
    font-size: 13px !important;
    margin-top: 10px !important;
}

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

.cookie-banner-links a:hover {
    color: var(--dark-violet);
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
    color: var(--white);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 56, 67, 0.3);
    background: linear-gradient(135deg, var(--mid-violet) 0%, var(--dark-violet) 100%);
}

.cookie-btn-settings {
    background: var(--white);
    color: var(--dark-violet);
    border: 2px solid var(--mid-violet);
}

.cookie-btn-settings:hover {
    background: var(--almost-white);
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--text-light);
}

.cookie-btn-reject:hover {
    background: var(--almost-white);
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .cookie-banner-text {
        min-width: 100%;
    }
    
    .cookie-banner-text h3 {
        font-size: 20px;
    }
    
    .cookie-banner-text p {
        font-size: 13px;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 14px 24px;
    }
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.cookie-settings-modal.active {
    display: flex;
}

.cookie-settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10002;
}

.cookie-settings-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    z-index: 10003;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

.cookie-settings-header {
    padding: 30px 30px 20px;
    border-bottom: 2px solid var(--almost-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--dark-violet);
    margin: 0;
}

.cookie-settings-close {
    width: 40px;
    height: 40px;
    background: var(--almost-white);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    color: var(--dark-violet);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.cookie-settings-close:hover {
    background: var(--pinky);
    color: var(--white);
    transform: rotate(90deg);
}

.cookie-settings-body {
    padding: 30px;
}

.cookie-settings-body > p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 25px;
}

.cookie-setting-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--almost-white);
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-header-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.cookie-setting-header-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: var(--dark-violet);
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-setting-header-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--almost-white);
    transition: 0.3s;
    border-radius: 30px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, var(--pinky) 0%, var(--mid-violet) 100%);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(30px);
}

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

.cookie-settings-footer {
    padding: 20px 30px 30px;
    border-top: 2px solid var(--almost-white);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .cookie-settings-content {
        max-width: 100%;
        border-radius: 15px;
        max-height: calc(100vh - 20px);
    }
    
    .cookie-settings-header {
        padding: 25px 20px 15px;
    }
    
    .cookie-settings-header h2 {
        font-size: 24px;
    }
    
    .cookie-settings-body {
        padding: 20px;
    }
    
    .cookie-setting-header-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-settings-footer {
        flex-direction: column;
        padding: 20px;
    }
    
    .cookie-settings-footer .cookie-btn {
        width: 100%;
    }
}


