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

:root {
    --primary-purple: #8B5CF6;
    --primary-pink: #EC4899;
    --secondary-purple: #7C3AED;
    --secondary-pink: #DB2777;
    --accent-purple: #A78BFA;
    --accent-pink: #F472B6;
    --dark-purple: #6D28D9;
    --light-purple: #EDE9FE;
    --light-pink: #FCE7F3;
    --warm-rose: #FFF1F2;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --gold: #D97706;
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-purple), var(--secondary-pink));
    --gradient-warm: linear-gradient(135deg, #FECDD3, #E9D5FF);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    font-weight: 900;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--light-purple) 0%, var(--warm-rose) 50%, var(--light-pink) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.particle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-pink);
    top: -50px;
    right: -80px;
    animation: floatParticle 15s ease-in-out infinite;
}

.particle-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-purple);
    bottom: 10%;
    left: -60px;
    animation: floatParticle 12s ease-in-out infinite reverse;
}

.particle-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-pink);
    top: 40%;
    right: 20%;
    animation: floatParticle 18s ease-in-out infinite;
}

.particle-4 {
    width: 100px;
    height: 100px;
    background: var(--accent-purple);
    bottom: 20%;
    right: 40%;
    animation: floatParticle 10s ease-in-out infinite reverse;
}

.particle-5 {
    width: 80px;
    height: 80px;
    background: var(--primary-pink);
    top: 20%;
    left: 30%;
    animation: floatParticle 14s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

.campaign-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.campaign-badge i {
    margin-right: 0.3rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-question {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.btn-primary, .btn-secondary, .btn-cta, .btn-package {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* Hero Visual - Big "8" Circle */
.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-flower-circle {
    width: 280px;
    height: 280px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
    position: relative;
    z-index: 2;
    animation: pulse 3s ease-in-out infinite;
}

.date-big {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.date-label {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3em;
    margin-top: -0.5rem;
}

.date-sub {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.4rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.03em;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.book {
    position: absolute;
    width: 80px;
    height: 110px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.book-1 {
    background: linear-gradient(135deg, #F9A8D4, #C084FC);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.book-2 {
    background: linear-gradient(135deg, #A78BFA, #818CF8);
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.book-3 {
    background: linear-gradient(135deg, #FB7185, #E879F9);
    bottom: 25%;
    right: 5%;
    animation-delay: 4s;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* ==================== DISCOUNT BANNER ==================== */
.discount-banner {
    background: var(--gradient-primary);
    padding: 1.5rem 0;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--white);
}

.banner-icon {
    font-size: 2.5rem;
    opacity: 0.9;
    flex-shrink: 0;
}

.banner-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-family: 'Inter', sans-serif;
}

.banner-text h3 span {
    color: #FDE68A;
    font-weight: 800;
}

.banner-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

/* ==================== PACKAGES SECTION ==================== */
.packages {
    padding: 80px 0;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-cover {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
    border-color: var(--accent-purple);
}

.package-card.featured {
    border-color: var(--primary-pink);
    background: linear-gradient(180deg, var(--warm-rose) 0%, var(--white) 30%);
}

.package-card.featured:hover {
    border-color: var(--primary-pink);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.2);
}

.package-body {
    padding: 0 2rem 2rem;
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.package-card.featured .package-badge {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    padding: 0.4rem 1.2rem;
}

.package-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.package-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.package-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.package-header h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.package-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-purple);
    border-radius: 12px;
}

.old-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.new-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-books {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.package-books h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.package-books ul {
    list-style: none;
}

.package-books li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #F3F4F6;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.package-books li:last-child {
    border-bottom: none;
}

.package-books li i {
    color: var(--primary-purple);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.package-books li a {
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-purple);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.package-books li a:hover {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.package-extras {
    background: #FEF3C7;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: #92400E;
}

.package-extras i {
    color: var(--gold);
    margin-right: 0.4rem;
}

.package-gift {
    background: linear-gradient(135deg, #FCE7F3, #EDE9FE);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--secondary-purple);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.package-gift i {
    color: var(--primary-pink);
    margin-right: 0.4rem;
}

.btn-package {
    background: var(--gradient-primary);
    color: var(--white);
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
    margin-top: auto;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.35);
}

/* ==================== VOUCHER SECTION ==================== */
.voucher-section {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--light-purple) 0%, var(--warm-rose) 100%);
}

.voucher-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.voucher-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.voucher-tag i {
    margin-right: 0.3rem;
}

.voucher-info h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.voucher-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.voucher-saving {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.voucher-saving i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.voucher-saving span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.voucher-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.voucher-image-wrapper {
    perspective: 800px;
}

.voucher-real-image {
    max-width: 420px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.25);
    transform: rotateY(-4deg) rotateX(3deg);
    transition: transform 0.5s ease;
    animation: floatVoucher 6s ease-in-out infinite;
}

.voucher-real-image:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.03);
}

@keyframes floatVoucher {
    0%, 100% { transform: rotateY(-4deg) rotateX(3deg) translateY(0); }
    50% { transform: rotateY(-4deg) rotateX(3deg) translateY(-10px); }
}

/* ==================== VOUCHER ACCENT STRIP (under packages) ==================== */
.voucher-accent {
    margin-top: 3rem;
    background: linear-gradient(135deg, #FDF2F8, #EDE9FE);
    border-radius: 24px;
    border: 2px solid var(--accent-pink);
    overflow: hidden;
    position: relative;
}

.voucher-accent::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: var(--accent-pink);
    opacity: 0.08;
    border-radius: 50%;
}

.voucher-accent-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 2.5rem;
}

.voucher-accent-image {
    flex-shrink: 0;
}

.voucher-accent-image img {
    width: 220px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.2);
    transition: transform 0.4s ease;
}

.voucher-accent-image img:hover {
    transform: scale(1.05) rotate(-1deg);
}

.voucher-accent-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.voucher-accent-badge i {
    margin-right: 0.3rem;
}

.voucher-accent-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.voucher-accent-text h3 span {
    color: var(--primary-pink);
    font-weight: 900;
}

.voucher-accent-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.btn-voucher-more {
    display: inline-block;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-voucher-more:hover {
    color: var(--primary-pink);
    transform: translateX(3px);
}

.btn-voucher-more i {
    margin-left: 0.3rem;
    font-size: 0.8rem;
}

/* ==================== FREE VOUCHER BANNER ==================== */
.free-voucher-banner {
    padding: 2rem 0;
    background: var(--white);
}

.free-voucher-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 2px solid #F59E0B;
}

.free-voucher-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.free-voucher-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.free-voucher-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #78350F;
}

.free-voucher-text h3 span {
    color: #B45309;
    font-weight: 800;
}

/* ==================== INDIVIDUAL TITLES ==================== */
.individual-titles {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-purple) 100%);
}

.titles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

a.title-card,
.title-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.title-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.title-cover {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--light-purple);
}

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

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

.title-info {
    padding: 1.2rem;
}

.title-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.title-author {
    font-size: 0.9rem;
    color: var(--primary-purple);
    font-weight: 600;
}

/* ==================== CTA SECTION ==================== */
.cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 1rem;
}

.cta-campaign {
    font-size: 1.1rem;
    color: #FDE68A;
    margin-bottom: 2rem;
}

.btn-cta {
    background: var(--white);
    color: var(--primary-purple);
    font-size: 1.1rem;
    padding: 1.1rem 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-pink);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

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

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .voucher-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .voucher-visual {
        order: -1;
    }
    
    .voucher-real-image {
        max-width: 320px;
    }
    
    .voucher-accent-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .voucher-accent-image img {
        width: 200px;
    }
    
    .titles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        height: 280px;
    }
    
    .hero-flower-circle {
        width: 200px;
        height: 200px;
    }
    
    .date-big {
        font-size: 5rem;
    }
    
    .date-label {
        font-size: 1.3rem;
    }
    
    .packages,
    .voucher-section,
    .individual-titles,
    .cta {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .package-cover {
        height: 180px;
    }
    
    .package-body {
        padding: 0 1.5rem 1.5rem;
    }
    
    .package-header h3 {
        font-size: 1.2rem;
    }
    
    .package-books li {
        font-size: 0.9rem;
    }
    
    .new-price {
        font-size: 1.5rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text h3 {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .voucher-info h2 {
        font-size: 1.8rem;
    }
    
    .voucher-real-image {
        max-width: 260px;
    }
    
    .voucher-accent-inner {
        padding: 1.5rem;
    }
    
    .voucher-accent-text h3 {
        font-size: 1.2rem;
    }
    
    .voucher-accent-image img {
        width: 160px;
    }
    
    .free-voucher-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-question {
        font-size: 0.95rem;
    }
    
    .titles-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary, .btn-cta, .btn-package {
        width: 100%;
        text-align: center;
    }
    
    .packages,
    .voucher-section,
    .individual-titles,
    .cta {
        padding: 40px 0;
    }
    
    .package-header {
        flex-direction: column;
        text-align: center;
    }
    
    .voucher-accent {
        margin-top: 2rem;
    }
    
    .voucher-accent-inner {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .voucher-accent-image img {
        width: 140px;
    }
    
    .voucher-accent-text h3 {
        font-size: 1.05rem;
    }
    
    .free-voucher-text h3 {
        font-size: 0.95rem;
    }
    
    .discount-banner {
        padding: 1rem 0;
    }
    
    .banner-text h3 {
        font-size: 1rem;
    }
    
    .banner-text p {
        font-size: 0.85rem;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
    }
}
