/* ==========================================================================
   ZONPAPERS — COMBINED STYLESHEET (style.css)
   Merged from style1.css + style2.css · Cleaned & fully responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT VARIABLES & RESET
   -------------------------------------------------------------------------- */
:root {
    --purple-deep:     #3b1e54;
    --purple-primary:  #62087d;
    --purple-vibrant:  #8b3cff;
    --purple-soft:     #b77eff;
    --white-light:     #ffffff;
    --white-off:       #faf5ff;
    --card-bg:         rgba(46, 21, 70, 0.8);
    --shadow-glow:     0 15px 35px rgba(0, 0, 0, 0.1);
    --dark-bg:         #0f0520;
    --theme-main:      #62087d;
    --theme-dark:      #4a065f;
    --theme-light:     #8b32b0;
    --theme-soft:      #f7f0fb;
    --white:           #ffffff;
    --footer-purple-dark:   #0c0717;
    --footer-purple-accent: #9f7aff;
    --footer-text:          #e2dcf5;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e1a2f;
}

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 70px 0;
    border-bottom: 1px solid rgba(98, 8, 125, 0.10);
}

section:first-of-type { padding-top: 30px; }

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.01em;
    color: #62087d;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #62087d;
    margin: 18px auto 0;
    border-radius: 4px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #1e1a2f;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--theme-main);
    margin: 15px auto 0;
    border-radius: 4px;
}

.section-subhead {
    text-align: justify;
    color: #5a4a6e;
    font-size: 1.15rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   2. NAVIGATION BAR
   -------------------------------------------------------------------------- */
nav {
    background: #62087d;
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
    gap: 20px;
}

.logo img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    background: #62087d;
    border-radius: 60px;
    padding: 5px 12px;
}

/* hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
}

/* nav links (desktop) */
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links li { position: relative; }

.nav-links > li > a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 4px;
    transition: color 0.25s, transform 0.25s;
    white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: #d9a7ff;
    transform: translateY(-2px);
}

/* dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    min-width: 210px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 200;
    border: 1px solid rgba(98, 8, 125, 0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li { display: block; margin: 0; }

.dropdown-menu a {
    color: var(--theme-main) !important;
    padding: 10px 22px;
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, padding-left 0.2s;
    text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu a.active-drop,
.dropdown-menu a.active-drop-notebook {
    background: #f3eaff;
    color: #62087d !important;
    padding-left: 28px;
}

.dropdown > a i {
    margin-left: 4px;
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.dropdown:hover > a i { transform: rotate(180deg); }

/* --------------------------------------------------------------------------
   3. SWIPER / HERO SLIDER  (index page)
   -------------------------------------------------------------------------- */
   
.swiper {
    width: 100%;
    height: 750px;
    border-radius: 0;
    margin: 0 0 20px 0;
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
}

.slide-content {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    padding: 32px 56px;
    border-radius: 80px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.slide-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 36px;
}

/* Gallery swiper overrides */
.gallerySwiper {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: transparent;
}

.gallerySwiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallerySwiper img {
    width: 360px;
    height: 360px;
    object-fit: contain;
    background: #fff;
    border-radius: 20px;
    border: 6px solid white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.gallerySwiper .swiper-slide-active img {
    border-color: #62087d;
    transform: scale(1.08);
}

.gallerySwiper .swiper-pagination {
    position: relative;
    bottom: 0 !important;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.gallerySwiper .swiper-pagination-bullet-active {
    background: #62087d !important;
    opacity: 1;
}

.gallerySwiper .swiper-pagination-bullet {
    background: #62087d !important;
    opacity: 0.35;
}

.gallery-container { position: relative; padding: 10px; }

.gallery-prev,
.gallery-next {
    color: #62087d !important;
    background: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    z-index: 10;
}

.gallery-prev::after,
.gallery-next::after {
    font-size: 22px;
    font-weight: bold;
    color: #62087d;
}

/* --------------------------------------------------------------------------
   4. CARD / HOVER
   -------------------------------------------------------------------------- */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #62087d;
    border-radius: 32px;
    padding: 32px 28px;
    border: 1px solid rgba(183, 126, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 38px -12px rgba(0, 0, 0, 0.35);
    border-color: #c084fc;
    background: #62087d;
}

.card-hover h3 { margin-bottom: 14px; font-size: 1.45rem; }
.card-hover p  { line-height: 1.65; color: #f3eaff; }

/* --------------------------------------------------------------------------
   5. WELCOME / WHY-US / PRODUCTS SECTION  (index)
   -------------------------------------------------------------------------- */
#welcome .card-hover p,
#about .card-hover p { margin-bottom: 16px; line-height: 1.7;}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 24px;
}

.feature-icon { font-size: 2.8rem; color: #ca9eff; margin-bottom: 20px; }

/* product tab buttons */
.product-selector {
    background: #62087d;
    padding: 22px 20px;
    border-radius: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 50px;
}

.prod-btn {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    padding: 12px 26px;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1.30rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.prod-btn.active, .prod-btn:hover {
    background: #ffffff;
    color: #62087d;
    box-shadow: 0 0 16px #b77eff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.product-item {
    background: #62087d;
    border-radius: 36px;
    overflow: hidden;
    transition: 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #c084fc;
    background: #3b1e54;
}

.product-item h4 { margin: 20px 16px 10px; font-size: 2rem; color: #fff; min-height: 48px; }
.product-item p  { padding: 0 18px 24px; font-size: 1.30rem; color: #f0e6ff; line-height: 1.5; }

/* --------------------------------------------------------------------------
   6. PREMIUM RANGE ZIGZAG SECTION
   -------------------------------------------------------------------------- */
.premium-zigzag {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#premium-range .premium-zigzag {
    max-width: 1200px;
    margin: 0 auto;
}
.premium-zigzag {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 20px;
}

.zigzag-item {
    display: flex;
    align-items: stretch;
    gap: 50px;
    background: #ffffff;
    border-radius: 40px 12px 40px 12px;
    padding: 36px 48px;
    box-shadow: 0 12px 40px -8px rgba(98, 8, 125, 0.15);
    border: 3px solid rgba(98, 8, 125, 0.08);
    transition: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
    min-height: 540px;
}
 /* diagonal accent lines — paper fold aesthetic */
.zigzag-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, transparent 50%, rgba(98, 8, 125, 0.05) 50%, rgba(98, 8, 125, 0.12) 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    pointer-events: none;
    transition: all 0.5s ease;
}

.zigzag-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(98, 8, 125, 0.04) 0%, transparent 100%);
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    pointer-events: none;
    transition: all 0.5s ease;
}

.zigzag-item:hover::before {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, transparent 50%, rgba(98, 8, 125, 0.08) 50%, rgba(98, 8, 125, 0.18) 100%);
}

.zigzag-item:hover::after {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(98, 8, 125, 0.08) 0%, transparent 100%);
}

.zigzag-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 56px -12px rgba(98, 8, 125, 0.2);
    border-color: rgba(98, 8, 125, 0.2);
    background: linear-gradient(135deg, #ffffff, #f5edff);
}
.zigzag-image {
    flex: 0 0 320px;
    /* fixed width for consistent image display */
    min-width: 260px;
    max-width: 880px;
    border-radius: 28px 6px 28px 6px;
    overflow: hidden;
    box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.10);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    align-self: center;
}

/* paper-like border accent on image */
.zigzag-image::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 2px solid rgba(98, 8, 125, 0.08);
    border-radius: 22px 4px 22px 4px;
    pointer-events: none;
}

.zigzag-item:hover .zigzag-image {
    transform: scale(1.02) rotate(-0.5deg);
    box-shadow: 0 20px 40px -10px rgba(98, 8, 125, 0.2);
}

.zigzag-image img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    max-height: 820px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.zigzag-item:hover .zigzag-image img {
    transform: scale(1.05);
}
.zigzag-text {
    flex: 1 1 400px;
    position: relative;
    z-index: 1;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zigzag-text h3 {
    font-size: 1.30rem;
    font-weight: 700;
    color: #3b1e54;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.zigzag-text h3 i {
    color: #62087d;
    font-size: 1.30rem;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(98, 8, 125, 0.08);
    border-radius: 16px 4px 16px 4px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.zigzag-item:hover .zigzag-text h3 i {
    background: rgba(98, 8, 125, 0.15);
    transform: rotate(-4deg) scale(1.05);
}

.zigzag-text p {
    font-size: 1.30rem;
    line-height: 1.8;
    color: #2d2a3e;
    margin-bottom: 6px;
}

.zigzag-text .highlight {
    color: #62087d;
    font-weight: 600;
    background: linear-gradient(120deg, rgba(183, 126, 255, 0.15) 0%, rgba(183, 126, 255, 0) 80%);
    padding: 0 8px;
    border-radius: 4px;
}
 .zigzag-text .product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.zigzag-text .product-features span {
    font-size: 1.30rem;
    font-weight: 500;
    color: #62087d;
    background: rgba(98, 8, 125, 0.07);
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(98, 8, 125, 0.08);
    transition: all 0.3s ease;
}

.zigzag-item:hover .product-features span {
    background: rgba(98, 8, 125, 0.13);
    border-color: rgba(98, 8, 125, 0.2);
}

.zigzag-text .product-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 1.30rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #62087d;
    background: rgba(98, 8, 125, 0.08);
    padding: 6px 20px;
    border-radius: 30px;
    border: 1px solid rgba(98, 8, 125, 0.10);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.zigzag-item:hover .zigzag-text .product-tag {
    background: rgba(98, 8, 125, 0.15);
    border-color: rgba(98, 8, 125, 0.25);
}
 /* zigzag alternation: even items mirror */
.zigzag-item:nth-child(even) {
    flex-direction: row-reverse;
    border-radius: 12px 40px 12px 40px;
}

.zigzag-item:nth-child(even)::before {
    right: auto;
    left: 0;
    background: linear-gradient(225deg, transparent 50%, rgba(98, 8, 125, 0.05) 50%, rgba(98, 8, 125, 0.12) 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.zigzag-item:nth-child(even)::after {
    left: auto;
    right: 0;
    background: linear-gradient(225deg, rgba(98, 8, 125, 0.04) 0%, transparent 100%);
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

.zigzag-item:nth-child(even) .zigzag-image {
    border-radius: 6px 28px 6px 28px;
}

.zigzag-item:nth-child(even) .zigzag-image::after {
    border-radius: 4px 22px 4px 22px;
}

.zigzag-item:nth-child(even) .zigzag-text h3 i {
    border-radius: 4px 16px 4px 16px;
}

/* --------------------------------------------------------------------------
   7. CONTACT SECTION (index inline form)
   -------------------------------------------------------------------------- */
.contact-form {
    max-width: 760px;
    margin: 0 auto;
    background: #62087d;
    padding: 48px 44px;
    border-radius: 56px;
    box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.25);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 22px;
    margin-bottom: 20px;
    background: #2f1a46;
    border: 1px solid #b77eff;
    border-radius: 50px;
    color: #fff;
    font-size: 1.30rem;
    font-family: 'Inter', sans-serif;
    transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fff;
    background: #3b2357;
}

.contact-form textarea { border-radius: 24px; resize: vertical; }

.contact-form button {
    background: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    color: #62087d;
    cursor: pointer;
    width: 100%;
    font-size: 1.30rem;
    transition: 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
}

.contact-form button:hover { background: #f0e6ff; transform: scale(0.98); }

.contact-info {
    margin-top: 24px;
    text-align: center;
    color: #f0e6ff;
    font-size: 0.95rem;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 50px;
    text-align: center;
}

.info-card {
    background: var(--white-off);
    padding: 36px 30px;
    border-radius: 40px;
    border: 2px solid var(--purple-soft);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: var(--purple-primary);
}

.info-card:hover i,
.info-card:hover h4,
.info-card:hover p,
.info-card:hover a { color: #fff !important; }

.info-card i    { font-size: 2.4rem; color: var(--purple-primary); margin-bottom: 18px; }
.info-card h4   { color: var(--purple-deep); font-size: 1.3rem; margin-bottom: 10px; letter-spacing: 1px; }
.info-card p,
.info-card a    { color: var(--purple-primary); font-size: 1rem; text-decoration: none; font-weight: 500; }

/* --------------------------------------------------------------------------
   8. ABOUT PAGE
   -------------------------------------------------------------------------- */
.about-hero {
    background: linear-gradient(135deg, #f9f1ff 0%, #e9daff 100%);
    padding: 80px 0 70px;
    border-bottom: 1px solid rgba(98, 8, 125, 0.15);
    text-align: center;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b1e54, #8b3cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.2rem;
    color: #62087d;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 500;
}

/* Journey */
.story-section { padding: 80px 0; background: #fff; }

.journey-card {
    background: var(--theme-main);
    border-radius: 48px;
    padding: 50px 48px;
    color: #fff;
    box-shadow: 0 20px 35px -8px rgba(98, 8, 125, 0.3);
}

.journey-card h1 { color: #fff; margin-bottom: 24px; font-size: 2rem; }

.journey-card p { color: #faf0ff; font-size: 1.30rem; line-height: 1.75; margin-bottom: 20px; }

/* Mission & Vision */
.mission-vision { padding: 70px 0; background: var(--white-off); }

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: var(--theme-main);
    border-radius: 40px;
    padding: 48px 36px;
    text-align: center;
    transition: 0.25s;
    box-shadow: 0 15px 30px rgba(98, 8, 125, 0.25);
    color: #fff;
}

.mv-card:hover { transform: translateY(-8px); box-shadow: 0 25px 40px -12px rgba(98, 8, 125, 0.4); }
.mv-icon i{ font-size: 3rem; color: #ffddff; margin-bottom: 22px; }
.mv-card h1 { font-size: 1.8rem; margin-bottom: 14px; color: #fff; }
.mv-card p  { color: #f3e6ff; line-height: 1.65; font-size: 1.30rem; }

/* Core Values */
.core-values-section { padding: 70px 0; background: #fff; }

.values-grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.value-card-purple {
    background: var(--theme-main);
    border-radius: 36px;
    padding: 36px 30px;
    text-align: center;
    transition: all 0.3s;
    color: #fff;
    box-shadow: 0 15px 28px rgba(98, 8, 125, 0.2);
}

.value-card-purple:hover { transform: translateY(-6px); background: #741d93; }
.value-card-purple i  { font-size: 3.5rem; color: #ffe6ff; margin-bottom: 18px; }
.value-card-purple h3 { margin: 16px 0 10px; font-weight: 700; font-size: 1.5rem; color: #fff; }
.value-card-purple p  { color: #f7eeff; line-height: 1.6; font-size: 1.30rem; }

/* Team */
.team-showcase { padding: 80px 0; background: #fff; }

.team-flex {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    background: var(--theme-main);
    padding: 36px 24px;
    border-radius: 56px;
    max-width: 380px;
    width: 100%;
    transition: 0.25s;
    color: #fff;
    box-shadow: 0 20px 30px rgba(98, 8, 125, 0.25);
}

.team-member:hover { background: #7b2ab0; transform: scale(1.02); }

.circle-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #b87aff;
    margin: 0 auto 22px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.team-member h3 { font-size: 1.25rem; margin-bottom: 6px; color: #fff; }
.team-member p  { font-size: 1.30rem; color: #f0dcff; }

/* Capabilities */
.capabilities-section { padding: 70px 0 80px; background: #fdfaff; }

.caps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.cap-card {
    background: var(--theme-main);
    padding: 40px 28px;
    border-radius: 36px;
    text-align: center;
    transition: 0.25s;
    color: #fff;
    box-shadow: 0 15px 28px rgba(98, 8, 125, 0.2);
}

.cap-card:hover { transform: translateY(-6px); background: #6e168b; }
.cap-card .value-icon { font-size: 2.8rem; color: #ffe6ff; margin-bottom: 18px; }
.cap-card h3 { font-size: 1.6rem; margin-bottom: 12px; font-weight: 700; color: #fff; }
.cap-card p  { color: #f7ecff; line-height: 1.55; font-size: 1.30rem; }

/* --------------------------------------------------------------------------
   9. PRODUCT PAGES  (Notebooks / Diaries / Calendars / Copier)
   -------------------------------------------------------------------------- */

/* Hero variants */
.notebook-hero,
.diaries-hero,
.calendar-hero,
.copier-hero {
    background: linear-gradient(135deg, #f9f1ff 0%, #e9daff 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(98, 8, 125, 0.15);
    text-align: center;
}

.notebook-hero h1,
.diaries-hero h1,
.calendar-hero h1,
.copier-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b1e54, #8b3cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

/* Calendar row layout */
.calendar-section { padding: 60px 0 90px; background: #fff; }

.calendar-row-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.calendar-row-item {
    display: flex;
    background: #fff;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(98, 8, 125, 0.12);
    transition: all 0.35s ease;
}

.calendar-row-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 45px -12px rgba(98, 8, 125, 0.22);
    border-color: rgba(98, 8, 125, 0.3);
}

.calendar-row-item:nth-child(even) { flex-direction: row-reverse; }

.calendar-img-box {
    flex: 1;
    min-width: 200px;
    background: #62087d;
    display: flex; align-items: center; justify-content: center;
    padding: 40px 30px;
}

.calendar-img-box img {
    max-width: 100%;
    max-height: 460px;
    object-fit: contain;
    filter: drop-shadow(4px 10px 15px rgba(0,0,0,0.12));
    transition: transform 0.3s;
}

.calendar-row-item:hover .calendar-img-box img { transform: scale(1.04); }

.calendar-info-box {
    flex: 1.2;
    padding: 40px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calendar-info-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--theme-main);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

/* Diary card style */
.diaries-collection { padding: 70px 0 90px; background: #fff; }

.diaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 44px;
}

.diary-card {
    background: #fff;
    border-radius: 36px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(98, 8, 125, 0.12);
    display: flex; flex-direction: column;
}

.diary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 45px -12px rgba(98, 8, 125, 0.25);
    border-color: rgba(98, 8, 125, 0.3);
}

.card-img {
    background: linear-gradient(145deg, #f3e9ff, #e4d5fc);
    display: flex; align-items: center; justify-content: center;
    padding: 36px 24px;
    min-height: 260px;
}

.card-img img {
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
    transition: transform 0.3s;
    filter: drop-shadow(4px 8px 12px rgba(0,0,0,0.08));
}

.diary-card:hover .card-img img { transform: scale(1.05); }

.card-content {
    padding: 28px 26px 34px;
    background: #fff;
    flex: 1;
    display: flex; flex-direction: column;
}

.card-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--theme-main);
    margin-bottom: 10px;
}

.badge-category {
    display: inline-block;
    align-self: flex-start;
    background: #f0e6ff;
    color: #62087d;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.description { color: #2d2a3e; line-height: 1.65; font-size: 1.30rem; margin-bottom: 22px; text-align: justify; }

.feature-list { list-style: none; margin: auto 0 18px; }

.feature-list li {
    font-size: 0.9rem;
    padding: 7px 0;
    display: flex; align-items: center; gap: 9px;
    color: #3b3352;
    border-bottom: 1px dashed #ede4f5;
}

.feature-list li i { color: var(--theme-main); width: 20px; font-size: 0.85rem; }

.tech-spec {
    background: #faf7ff;
    padding: 14px 18px;
    border-radius: 24px;
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-spec span { font-size: 0.8rem; font-weight: 600; color: #4a3468; display: inline-flex; align-items: center; gap: 6px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--theme-main);
    color: var(--theme-main);
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 700;
    margin-top: 18px;
    transition: 0.25s;
    cursor: pointer;
    font-size: 0.85rem;
    align-self: flex-start;
    text-decoration: none;
}

.btn-outline:hover { background: var(--theme-main); color: #fff; }

/* CTA Banner */
.cta-banner {
    background: var(--theme-main);
    margin: 28px 0 56px;
    border-radius: 48px;
    padding: 48px 36px;
    text-align: center;
    color: #fff;
}

.cta-banner h3 { font-size: 1.9rem; margin-bottom: 14px; }
.cta-banner p  { max-width: 580px; margin: 0 auto 22px; opacity: 0.92; font-size: 1.30rem; }

.cta-btn {
    background: #fff;
    color: var(--theme-main);
    border: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover { transform: scale(1.02); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

/* btn-outline1  (nav pill style used on some pages) */
.btn-outline1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.25s;
    cursor: pointer;
    font-size: 1.05rem;
    text-decoration: none;
}

.btn-outline1:hover { color: #d9a7ff; }

/* --------------------------------------------------------------------------
   10. GALLERY PAGE
   -------------------------------------------------------------------------- */
.gallery-hero {
    background: linear-gradient(135deg, #f9f1ff 0%, #e9daff 100%);
    padding: 70px 0 60px;
    border-bottom: 1px solid rgba(98, 8, 125, 0.15);
    text-align: center;
}

.gallery-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b1e54, #8b3cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.gallery-section { padding: 60px 0 90px; background: #fff; }

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f3eaff;
    color: var(--theme-main);
    border: 2px solid transparent;
    padding: 10px 26px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--theme-main);
    color: #fff;
    box-shadow: 0 8px 20px rgba(98, 8, 125, 0.25);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.gallery-item { transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }

.gallery-card-inner {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(98, 8, 125, 0.08);
    height: 100%;
    display: flex; flex-direction: column;
}

.gallery-card-inner:hover {
    box-shadow: 0 25px 45px rgba(98, 8, 125, 0.18);
    border-color: rgba(98, 8, 125, 0.25);
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-card-inner:hover img { transform: scale(1.05); }

.gallery-item-details { padding: 20px 20px 24px; text-align: center; }
.gallery-item-details h3 { font-size: 1.15rem; color: var(--purple-deep); margin-bottom: 4px; font-weight: 700; }
.gallery-item-details p  { color: #7b6f93; font-size: 1.30rem; font-weight: 500; }

/* --------------------------------------------------------------------------
   11. CONTACT PAGE (standalone contact1.php)
   -------------------------------------------------------------------------- */
.contact-content {
    padding: 60px 0 90px;
    background: #faf7ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.contact-info-wrapper { display: flex; flex-direction: column; gap: 22px; }

.contact-info-card {
    background: #fff;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(98, 8, 125, 0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.contact-info-card:hover { box-shadow: 0 15px 30px rgba(98, 8, 125, 0.08); }

.icon-circle {
    width: 48px; height: 48px;
    background: #f3eaff;
    color: var(--theme-main);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.contact-info-card h3 { font-size: 1.2rem; color: var(--theme-dark); margin-bottom: 10px; font-weight: 700; }
.contact-info-card p,
.contact-detail { font-size: 0.92rem; color: #4a3468; line-height: 1.6; margin-bottom: 7px; }
.contact-detail a  { color: var(--theme-light); text-decoration: none; font-weight: 500; }
.contact-detail a:hover { text-decoration: underline; }
.contact-detail i  { width: 18px; color: var(--theme-main); margin-right: 5px; }

.small-note {
    font-size: 0.78rem !important;
    color: #8c75a4 !important;
    margin-top: 12px;
    border-top: 1px dashed #f0e6ff;
    padding-top: 8px;
    margin-bottom: 0 !important;
}

.contact-form-card {
    background: #fff;
    padding: 42px 38px;
    border-radius: 36px;
    border: 1px solid rgba(98, 8, 125, 0.12);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 { font-size: 1.9rem; color: var(--theme-main); margin-bottom: 6px; font-weight: 800; }
.form-subtitle { color: #6a5a80; margin-bottom: 26px; font-size: 0.95rem; }

.form-group { margin-bottom: 18px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid #ebdcf7;
    background: #faf7ff;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #1e1a2f;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--theme-light);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 50, 176, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2362087d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background: var(--theme-main);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover { background: var(--theme-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(98,8,125,0.25); }
.submit-btn:disabled { background: #b399c2; cursor: not-allowed; transform: none; box-shadow: none; }

.hours-card {
    background: linear-gradient(135deg, #4a065f 0%, #20022b 100%);
    padding: 38px;
    border-radius: 36px;
    color: #fff;
    margin-bottom: 36px;
}

.hours-card h3 { font-size: 1.5rem; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.hour-item {
    background: rgba(255,255,255,0.06);
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
}

.hour-item .day  { font-weight: 700; color: #d9a7ff; margin-bottom: 4px; }
.hour-item .time { font-size: 0.92rem; opacity: 0.9; }

.map-section {
    width: 100%;
    height: 380px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border: 1px solid rgba(98, 8, 125, 0.1);
    margin-bottom: 36px;
}

.map-section iframe { width: 100%; height: 100%; border: none; }

.highlight-box {
    background: linear-gradient(135deg, #62087d 0%, #4a065f 100%);
    border-radius: 36px;
    padding: 36px 40px;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 35px rgba(98, 8, 125, 0.2);
    margin-bottom: 30px;
}

.highlight-box p { font-size: 1.05rem; line-height: 1.7; font-weight: 500; margin-bottom: 0; }
.highlight-box i { color: #ffddff; }

.last-updated {
    text-align: center;
    font-size: 0.85rem;
    color: #8c75a4;
    margin-top: 16px;
    display: flex; align-items: center; justify-content: center; gap: 7px;
}

.alert-box {
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 9px;
}

.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error   { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }

/* --------------------------------------------------------------------------
   12. DISCLAIMER / PRIVACY / TERMS PAGES
   -------------------------------------------------------------------------- */
.disclaimer-hero,
.privacy-hero,
.terms-hero {
    background: linear-gradient(135deg, #f9f1ff 0%, #e9daff 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(98, 8, 125, 0.15);
    text-align: center;
}

.disclaimer-hero h1,
.privacy-hero h1,
.terms-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b1e54, #8b3cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.terms-hero .hero-sub { font-size: 1.2rem; color: #62087d; max-width: 720px; margin: 0 auto; font-weight: 500; }

.disclaimer-section,
.privacy-section,
.terms-content { padding: 70px 0 90px; background: #fff; }

.disclaimer-wrapper,
.privacy-wrapper { max-width: 900px; margin: 0 auto; }

.terms-content .container { max-width: 950px; margin: 0 auto; padding: 0 32px; }

.disclaimer-box,
.privacy-card,
.terms-card {
    background: #fff;
    border-radius: 36px;
    padding: 45px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(98, 8, 125, 0.12);
    margin-bottom: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disclaimer-box:hover,
.privacy-card:hover,
.terms-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 40px -12px rgba(98, 8, 125, 0.15);
}

.disclaimer-box h2,
.privacy-card h2,
.terms-card h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--theme-main);
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 12px;
}

.disclaimer-box h2::after,
.privacy-card h2::after,
.terms-card h2::after {
    display: none;
}

.disclaimer-box h2 i,
.privacy-card h2 i,
.terms-card h2 i {
    color: var(--purple-vibrant);
    font-size: 1.3rem;
    background: #f4e8ff;
    padding: 9px;
    border-radius: 13px;
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
}

.disclaimer-box p,
.privacy-card p,
.terms-card p {
    color: #2d2a3e;
    line-height: 1.75;
    font-size: 1.02rem;
    margin-bottom: 14px;
    text-align: justify;
}

.disclaimer-box ul,
.privacy-card ul,
.terms-card ul { list-style: none; margin: 18px 0; padding-left: 4px; }

.disclaimer-box ul li,
.privacy-card ul li,
.terms-card ul li {
    font-size: 1rem;
    padding: 10px 0;
    display: flex; align-items: flex-start; gap: 12px;
    color: #3b3352;
    line-height: 1.6;
    border-bottom: 1px dashed #f3ebfc;
}

.disclaimer-box ul li:last-child,
.privacy-card ul li:last-child,
.terms-card ul li:last-child { border-bottom: none; }

.disclaimer-box ul li i,
.privacy-card ul li i {
    color: var(--theme-main);
    margin-top: 3px;
    font-size: 0.8rem;
    background: #f7f0fb;
    padding: 5px;
    border-radius: 50%;
}

.terms-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #62087d;
    margin-top: 4px;
    font-size: 0.78rem;
    background: #f7f0fb;
    padding: 5px;
    border-radius: 50%;
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.meta-update {
    font-size: 0.88rem;
    color: #7b6f93;
    font-style: italic;
    margin-top: -8px;
    margin-bottom: 36px;
    text-align: center;
}

.privacy-contact-box {
    background: linear-gradient(135deg, var(--theme-main) 0%, #4a065f 100%);
    border-radius: 36px;
    padding: 48px 42px;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 35px rgba(98, 8, 125, 0.2);
}

.privacy-contact-box h2 { color: #fff; font-size: 1.9rem; margin-bottom: 12px; }
.privacy-contact-box p  { color: #f5e6ff; margin-bottom: 28px; font-size: 1.05rem; }

.privacy-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    margin-top: 18px;
}

.privacy-contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.3s;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.privacy-contact-card:hover { transform: scale(1.05); background: rgba(255,255,255,0.15); }
.privacy-contact-card i  { font-size: 1.8rem; color: #ffddff; margin-bottom: 12px; }
.privacy-contact-card h4 { font-size: 1.05rem; margin-bottom: 6px; font-weight: 600; }
.privacy-contact-card p  { font-size: 0.9rem; color: #fdf6ff; margin-bottom: 0; }
.privacy-contact-card a  { color: #ffddff; text-decoration: none; font-weight: 600; }

.important-note {
    background: #fdf6ff;
    border-left: 4px solid #62087d;
    padding: 18px;
    border-radius: 10px;
    margin-top: 18px;
    font-size: 0.95rem;
    color: #3b3352;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background-color: #0c0717;
    color: #e2dcf5;
    font-family: 'Inter', sans-serif;
    padding: 3rem 2rem 1.5rem;
    border-top: 3px solid #9f7aff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, #c5a3ff, #9f7aff, #c5a3ff, transparent);
    animation: borderShimmer 9s infinite linear;
    pointer-events: none;
}

@keyframes borderShimmer {
    0%   { left: -100%; }
    50%  { left: 100%; }
    100% { left: 100%; }
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 2rem;
}

.footer-brand {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeInUp 1.1s ease forwards;
    opacity: 0;
    animation-delay: 0.05s;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand .logo img {
    max-width: 170px;
    height: auto;
    padding: 0 !important;
    display: block;
    background: none !important;
    border-radius: 0 !important;
}

.social-icons {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    justify-content: flex-start;
}

.social-icons a {
    color: #cfc2f0;
    background: rgba(255,255,255,0.06);
    width: 34px; height: 34px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-decoration: none;
    animation: iconPop 0.7s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
}

.social-icons a:nth-child(1) { animation-delay: 0.25s; }
.social-icons a:nth-child(2) { animation-delay: 0.40s; }
.social-icons a:nth-child(3) { animation-delay: 0.55s; }

@keyframes iconPop {
    0%   { opacity: 0; transform: scale(0.6); }
    70%  { transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

.social-icons a:hover {
    background: #9f7aff;
    color: #0c0717;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 5px 14px rgba(159,122,255,0.35);
}

.footer-links-group {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    flex: 2.5;
    text-align: left;
}

.footer-links,
.footer-products,
.footer-contact {
    flex: 1;
    min-width: 150px;
    animation: fadeInUp 1.1s ease forwards;
    opacity: 0;
}

.footer-links    { animation-delay: 0.15s; }
.footer-products { animation-delay: 0.30s; }
.footer-contact  { animation-delay: 0.45s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.footer-links h4,
.footer-products h4,
.footer-contact h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #e9dfff;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-products h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -7px; left: 0;
    width: 0; height: 2px;
    background: #a07aff;
    border-radius: 2px;
    animation: expandLine 0.9s ease-out 0.5s forwards;
}

@keyframes expandLine {
    from { width: 0%; }
    to   { width: 36px; }
}

.footer-links ul,
.footer-products ul,
.footer-contact ul { list-style: none; margin: 0; padding: 0; }

.footer-links li,
.footer-products li { margin-bottom: 0.7rem; }

.footer-links a,
.footer-products a,
.product-list-simple li a {
    color: #cbc3e8;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    display: inline-block;
    transition: all 0.35s ease;
}

.footer-links a:hover,
.footer-products a:hover,
.product-list-simple li a:hover {
    color: #dbbdff;
    transform: translateX(7px);
    text-shadow: 0 0 8px rgba(159,122,255,0.4);
}

.product-list-simple { list-style: none; margin: 0; padding: 0; }
.product-list-simple li { margin-bottom: 0.7rem; }

.contact-details { display: flex; flex-direction: column; gap: 0; }

.contact-details p {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: #dbd2f5;
    transition: all 0.35s ease;
    border-radius: 8px;
    padding: 2px 0;
}

.contact-details p:hover { transform: translateX(5px); background: rgba(159,122,255,0.1); padding-left: 5px; }
.contact-details i { width: 20px; margin-top: 3px; color: #b791ff; font-size: 0.9rem; }
.contact-details a { color: #dbd2f5; text-decoration: none; border-bottom: 1px dotted rgba(159,122,255,0.4); transition: all 0.3s; }
.contact-details a:hover { color: #f0e2ff; border-bottom-color: #b287ff; }

.footer-bottom {
    max-width: 1280px;
    margin: 2rem auto 0;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(159,122,255,0.25);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #a194c2;
    opacity: 0;
    animation: fadeBottom 1s ease-out 0.8s forwards;
}

@keyframes fadeBottom {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.legal-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }

.legal-links a {
    color: #bcabeb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.35s ease;
    position: relative;
}

.legal-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: #c5a3ff;
    transition: width 0.4s ease;
}

.legal-links a:hover::after { width: 100%; }
.legal-links a:hover { color: #e2ccff; transform: translateY(-2px); }

.copyright { text-align: right; }

/* --------------------------------------------------------------------------
   14. TOAST NOTIFICATIONS
   -------------------------------------------------------------------------- */
.toast-notify {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 2500;
    backdrop-filter: blur(12px);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex; align-items: center; gap: 10px;
    color: #fff;
    max-width: 90vw;
}

.toast-notify.success { background: rgba(30,58,47,0.95); border-left: 5px solid #4caf50; }
.toast-notify.error   { background: rgba(94,42,42,0.95);  border-left: 5px solid #f44336; }
.toast-notify.info    { background: rgba(30,30,80,0.95);  border-left: 5px solid #62087d; }

/* --------------------------------------------------------------------------
   15. RESPONSIVE — MOBILE NAV
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .menu-toggle { display: block; }

    .nav-container { flex-wrap: wrap; padding: 10px 0; }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: #62087d;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .nav-links.open {
        max-height: 600px;
        padding: 10px 0 14px;
    }

    .nav-links li { width: 100%; padding: 0; }

    .nav-links > li > a {
        display: block;
        padding: 12px 22px;
        width: 100%;
        font-size: 1rem;
        color: #fff;
    }

    .nav-links > li > a:hover,
    .nav-links > li > a.active { color: #d9a7ff; transform: none; }

    /* dropdown in mobile: static & toggled by .open class */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        background: rgba(255,255,255,0.1);
        border-radius: 10px;
        margin: 4px 16px 4px;
        padding: 6px 0;
        box-shadow: none;
        border: none;
    }

    .dropdown.open > .dropdown-menu { display: block; }

    .dropdown-menu a {
        color: #ffe6ff !important;
        padding: 10px 20px;
        font-size: 0.92rem;
    }

    .dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: #fff !important; padding-left: 26px; }
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE — GENERAL BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .calendar-row-item,
    .calendar-row-item:nth-child(even) { flex-direction: column; }

    .calendar-img-box  { padding: 36px 20px; }
    .calendar-info-box { padding: 32px 28px; }

    .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .contact-form-card { padding: 28px 22px; }

    .zigzag-item { flex-direction: column !important; gap: 30px; padding: 28px 28px; }
    .zigzag-image { flex: unset; width: 100%; min-width: unset; }
}

@media (max-width: 780px) {
    .container { padding: 0 18px; }

    h2 { font-size: 2rem; margin-bottom: 36px; }

    .about-hero h1,
    .diaries-hero h1,
    .gallery-hero h1,
    .notebook-hero h1,
    .calendar-hero h1,
    .copier-hero h1,
    .disclaimer-hero h1,
    .privacy-hero h1,
    .terms-hero h1 { font-size: 2rem; }

    .hero-sub { font-size: 1rem; }

    .grid-2 { grid-template-columns: 1fr; gap: 24px; }

    .journey-card { padding: 30px 22px; border-radius: 28px; }

    .section-title { font-size: 1.7rem; }

    .card-content h2 { font-size: 1.5rem; }

    .swiper { height: 380px; border-radius: 20px; }

    .slide-content { padding: 18px 26px; }
    .slide-content h3 { font-size: 1.5rem; }

    .team-flex { gap: 28px; }
    .circle-img { width: 170px; height: 170px; }
    .team-member { max-width: 340px; }

    .diaries-grid { grid-template-columns: 1fr; gap: 28px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 24px; }

    .cta-banner { padding: 30px 22px; border-radius: 28px; }
    .cta-banner h3 { font-size: 1.5rem; }

    .product-selector { border-radius: 50px; padding: 16px 14px; gap: 10px; }
    .prod-btn { font-size: 0.92rem; padding: 10px 18px; }

    .privacy-card,
    .privacy-contact-box,
    .disclaimer-box,
    .terms-card { padding: 30px 20px; border-radius: 22px; }

    .contact-form { padding: 28px 20px; border-radius: 32px; }

    .footer-brand { align-items: center; text-align: center; }
    .footer-brand .logo img { margin: auto; }
    .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .legal-links { justify-content: center; }
    .copyright { text-align: center; }

    section { padding: 50px 0; }

    .gallerySwiper img { width: 280px; height: 280px; }
}

@media (max-width: 480px) {
    .nav-container { padding: 8px 0; }
    .logo img { max-height: 55px; }

    .slide-content { padding: 14px 18px; border-radius: 50px; }
    .slide-content h3 { font-size: 1.2rem; }
    .slide-content p  { font-size: 0.9rem; }

    .zigzag-text h3 { font-size: 1.5rem; }
    .zigzag-item { padding: 22px 18px; }

    .product-grid { grid-template-columns: 1fr; }

    .gallery-img-wrapper { height: 220px; }

    .hours-grid { grid-template-columns: 1fr; }
}
