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

:root {
    --purple: #7B3F9C;
    --purple-light: rgba(123, 63, 156, 0.15);
    --gold: #D4AF37;
    --teal: #4A9B8E;
    --cream: #F8F6F0;
    --soft-white: #FEFDFB;
    --text-dark: #2D1B36;
    --text-soft: #6B5B73;
}

[data-theme="dark"] {
    --purple: #C9A8E8;           
    --purple-light: rgba(201, 168, 232, 0.15);
    --gold: #FFD899;             
    --teal: #8FD5C1;             
    --cream: #1A1420;            
    --soft-white: #2A1F36;       
    --text-dark: #FAF7FF;        
    --text-soft: #D4C2E8;        
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
   transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
            color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.serif {
    font-family: 'Lora', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
    transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--purple), var(--teal));
    border-radius: 10px;
    border: 2px solid var(--cream);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--teal), var(--purple));
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--purple) var(--cream);
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: rgba(245, 241, 233, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 1px solid rgba(123, 63, 156, 0.1);
    box-shadow: 0 8px 30px rgba(123, 63, 156, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    font-size: 1.3rem;
}

.theme-toggle.hidden {
    transform: translateY(-100px);
    opacity: 0;
}

.theme-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(123, 63, 156, 0.25);
}

[data-theme="dark"] .theme-toggle {
    background: rgba(37, 32, 51, 0.97);
    border-color: rgba(155, 95, 188, 0.2);
    box-shadow: 0 8px 30px rgba(155, 95, 188, 0.3);
}

.theme-icon {
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(20deg) scale(1.1);
}

/* loading css starts here */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream), var(--soft-white));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-mandala {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 1.5rem;
}

.mandala-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-1 {
    width: 80px;
    height: 80px;
    border-top-color: var(--purple);
    border-right-color: rgba(123, 63, 156, 0.2);
    animation: spin 2s linear infinite;
}

.ring-2 {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-right-color: var(--gold);
    border-bottom-color: rgba(212, 175, 55, 0.2);
    animation: spin 1.5s linear infinite reverse;
}

.ring-3 {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-bottom-color: var(--teal);
    border-left-color: rgba(74, 155, 155, 0.2);
    animation: spin 1s linear infinite;
}

.loading-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    text-align: center;
    font-size: 1rem;
    color: var(--text-dark);
}

/* nav bar starts here */
.bottom-nav {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(245, 241, 233, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(123, 63, 156, 0.1);
    box-shadow: 0 8px 30px rgba(123, 63, 156, 0.15);
    transition: all 0.5s ease, background 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
            border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
            box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
}

[data-theme="dark"] .bottom-nav {
    background: rgba(42, 31, 54, 0.97);
    border-color: rgba(201, 168, 232, 0.2);
    box-shadow: 0 8px 30px rgba(201, 168, 232, 0.3);
}

.bottom-nav.hidden {
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
}

.nav-links {
    display: flex;
    gap: 0.3rem;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: rgba(123, 63, 156, 0.8);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    opacity: 0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-icon {
    position: relative;
    z-index: 2;
}

/* hero styles starts here  */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 30% 70%, var(--purple-light), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1), transparent 50%),
        var(--cream);
    position: relative;
    transition: background 0.3s ease;
}

[data-theme="dark"] .hero {
    background: radial-gradient(circle at 30% 70%, var(--purple-light), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 197, 91, 0.15), transparent 50%),
        var(--cream);
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 500px;
    z-index: 10;
}

.hero-whisper {
    font-size: 0.95rem;
    color: var(--purple);
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeUp 1s ease 0.1s backwards;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 1s ease 0.3s backwards;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-soft);
    margin-bottom: 2rem;
    animation: fadeUp 1s ease 0.6s backwards;
}

.hero-mandala {
    width: 600px;
    height: 600px;
    animation: mandalaBloom 2s ease 0.2s backwards;
}

.mandala-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 30px rgba(123, 63, 156, 0.2));
}

[data-theme="dark"] .mandala-svg {
    filter: drop-shadow(0 15px 40px rgba(155, 95, 188, 0.4));
}

/* about css starts hereeee */

.about {
    padding: 5rem 3rem;
    background: radial-gradient(circle at 20% 30%, var(--purple-light), transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08), transparent 50%),
            var(--soft-white);
    position: relative;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--teal), var(--purple), transparent);
    margin: 0;
}

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

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

.about-subtitle {
    font-size: 1rem;
    color: var(--purple);
    margin-bottom: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-soft);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--purple), var(--teal), var(--gold));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-point {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.timeline-point.visible {
    opacity: 1;
    transform: translateY(0);
}

/* benefit section starts here */

.benefits {
    padding: 5rem 3rem;
    background: radial-gradient(circle at top left, var(--purple-light), transparent 60%),
            radial-gradient(circle at bottom right, rgba(74, 155, 155, 0.08), transparent 60%),
            var(--cream);

    position: relative;
}

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

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

.benefits-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.benefits-why {
    font-size: 2rem;
    color: var(--purple);
    margin: 2rem auto 2rem;
    font-weight: 800;
    max-width: 600px;
}

.mandala-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-soft);
    font-weight: 500;
}

.benefits-intro {
    font-size: 1.2rem;
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefit-card:last-child {
        grid-column: 1 / 3;
        max-width: 400px;
        margin: 0 auto;
    }
}

.benefits-carousel-wrapper {
    display: none;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(123, 63, 156, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

[data-theme="dark"] .benefit-card {
    background: rgba(37, 32, 51, 0.95);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(155, 95, 188, 0.2);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(123, 63, 156, 0.2);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit-subtitle {
    font-size: 1rem;
    color: var(--purple);
    margin-bottom: 1rem;
    font-weight: 500;
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* pursose css */

.purpose-section {
    background: linear-gradient(135deg, rgba(123, 63, 156, 0.08), rgba(74, 155, 155, 0.08));
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    border: 2px solid rgba(123, 63, 156, 0.15);
    position: relative;
    overflow: hidden;
}

.purpose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--gold), var(--teal));
}

.purpose-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.purpose-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.purpose-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.purpose-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

/* Gallery art css */
.gallery {
    padding: 5rem 3rem;
    background: radial-gradient(circle at top right, rgba(74, 155, 155, 0.08), transparent 60%),
            radial-gradient(circle at bottom left, var(--purple-light), transparent 60%),
            var(--cream);
    position: relative;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: var(--text-soft);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s ease;
    align-items: center;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 1rem);
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item.landscape {
    aspect-ratio: 4/3;
    max-height: 350px;
}

.gallery-item.portrait {
    aspect-ratio: 3/4;
    max-height: 500px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 27, 54, 0.95));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(123, 63, 156, 0.4);
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(131, 58, 180, 0.4);
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(131, 58, 180, 0.5);
}

.timeline-content {
    width: 45%;
}

.timeline-content.left {
    margin-right: auto;
    text-align: right;
}

.timeline-content.right {
    margin-left: 55%;
    text-align: left;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border: 1px solid rgba(123, 63, 156, 0.1);
}

[data-theme="dark"] .timeline-card {
    background: rgba(37, 32, 51, 0.95);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(155, 95, 188, 0.2);
}

.timeline-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

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

.timeline-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 1.8rem 1.5rem;
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.4rem;
}

.timeline-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.timeline-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--soft-white);
    border: 3px solid var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.5s ease;
}

.timeline-dot:hover {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 8px 20px rgba(123, 63, 156, 0.3);
}

.dot-inner {
    font-size: 1.2rem;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.06);
        opacity: 1;
    }
}

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

@keyframes mandalaBloom {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

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

/* css of miradas section */
.miradas {
    padding: 60px 20px;
    position: relative;
    background: radial-gradient(circle at center top, var(--purple-light), transparent 70%),
            radial-gradient(circle at center bottom, rgba(212, 175, 55, 0.06), transparent 70%),
            linear-gradient(180deg, var(--cream), var(--soft-white));

}

.miradas-container {
    max-width: 1400px;
    margin: 0 auto;
}

.miradas-header {
    text-align: center;
    margin-bottom: 60px;
}

.one-subtitle {
    font-size: 1rem;
    color: var(--purple);
    margin-bottom: 15px;
    background: var(--purple-light);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.miradas-title {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.miradas-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.miradas-subtitle {
    font-size: 1.3rem;
    color: var(--text-soft);
    font-style: italic;
    margin-bottom: 30px;
}

.progress-indicator {
    margin-top: 30px;
}

.progress-text {
    font-size: 1rem;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.progress-bar {
    width: 300px;
    height: 8px;
    background: var(--cream);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid var(--purple-light);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--gold));
    width: 100%;
    border-radius: 10px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    align-items: center;
}

.collection-card {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    justify-self: center;
}

.collection-card:nth-child(odd) {
    transform: rotate(-0.5deg);
}

.collection-card:nth-child(even) {
    transform: rotate(0.5deg);
}

.collection-card:hover {
    transform: translateY(-8px) rotate(0deg) !important;
    z-index: 10;
}

.card-frame {
    background: var(--soft-white);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--cream);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

[data-theme="dark"] .card-frame {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.6);
}

.collection-card:hover .card-frame {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--purple-light);
}

.collection-card.landscape .card-frame {
    aspect-ratio: 4/3;
    width: 100%;
    max-width: 350px;
}

.collection-card.portrait .card-frame {
    aspect-ratio: 3/4;
    width: 100%;
    max-width: 280px;
}

.card-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 27, 54, 0.95));
    color: var(--soft-white);
    padding: 15px;
    border-radius: 0 0 12px 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-align: center;
}

.collection-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.info-title {
    font-size: 1.2rem;
    margin-bottom: 3px;
    color: #fff;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.9);
}

.info-date {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #fff;
}

.view-instructions {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--purple-light);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(123, 63, 156, 0.2);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.instruction-icon {
    font-size: 1.3rem;
    animation: gentleBounce 2s ease-in-out infinite;
}

.view-instructions p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

/* Personal Note and CTA */
.personal-note {
    background: var(--soft-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--purple);
    margin-top: 60px;
    transform: rotate(-0.5deg);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.note-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
}

.exhibition-updates {
    border-top: 2px solid var(--cream);
    padding-top: 30px;
    text-align: center;
}

.updates-text {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #E1306C, #F56040, #FCAF45);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(225, 48, 108, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-shimmer {
    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;
}

.instagram-btn:hover .btn-shimmer {
    left: 100%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 54, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--soft-white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

[data-theme="dark"] .modal-content {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 70px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 12px;
    color: var(--purple);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: var(--cream);
    transform: scale(1.05);
}
.modal-image-container {
    width: 100%;
    background: linear-gradient(135deg, var(--cream), var(--soft-white));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 20px 20px 0 0;
}

.modal-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 10px;
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.modal-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-date {
    font-size: 1rem;
    color: var(--purple);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: left;
    white-space: pre-line; 
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.modal-description strong {
    display: block;
    font-weight: 700;
    color: var(--purple);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.modal-description::first-line {
    font-weight: 500;
}

.modal-reel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #E1306C, #F56040, #FCAF45);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
    width: fit-content;
    margin: 0 auto;
}

.modal-reel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(225, 48, 108, 0.4);
}

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

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

/* process of mandala css starts here  */

.energy-process {
    padding: 5rem 1.5rem;
    background: radial-gradient(ellipse at top center, var(--purple-light), transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(74, 155, 155, 0.1), transparent 60%),
            radial-gradient(circle at 80% 40%, rgba(212, 175, 55, 0.08), transparent 60%),
            var(--cream);
    position: relative;
    overflow: hidden;
    transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .energy-process {
    background: radial-gradient(ellipse at top center, rgba(201, 168, 232, 0.2), transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(143, 213, 193, 0.12), transparent 60%),
            radial-gradient(circle at 80% 40%, rgba(255, 216, 153, 0.1), transparent 60%),
            var(--cream);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

.process-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--purple), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.process-subtitle {
    font-size: 1.1rem;
    color: var(--text-soft);
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
}

.energy-network {
    position: relative;
    min-height: 450px;
    margin-bottom: 3rem;
}

.energy-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(123, 63, 156, 0.7), transparent);
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
    will-change: transform, opacity;
}

.particle:nth-child(1) { 
    top: 10%; left: 15%; 
    animation-delay: 0s; 
    background: radial-gradient(circle, rgba(123, 63, 156, 0.7), transparent);
}
.particle:nth-child(2) { 
    top: 20%; right: 20%; 
    animation-delay: 1.5s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.7), transparent);
}
.particle:nth-child(3) { 
    top: 60%; left: 10%; 
    animation-delay: 3s;
    background: radial-gradient(circle, rgba(74, 155, 155, 0.7), transparent);
}
.particle:nth-child(4) { 
    bottom: 20%; right: 15%; 
    animation-delay: 4.5s;
    background: radial-gradient(circle, rgba(123, 63, 156, 0.6), transparent);
}
.particle:nth-child(5) { 
    top: 40%; left: 50%; 
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6), transparent);
}
.particle:nth-child(6) { 
    bottom: 30%; right: 40%; 
    animation-delay: 5.5s;
    background: radial-gradient(circle, rgba(74, 155, 155, 0.6), transparent);
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.energy-flow {
    stroke-dasharray: 8;
    stroke-dashoffset: 16;
    animation: flowPath 3s linear infinite;
}

.energy-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 450px;
    z-index: 2;
}

.energy-step {
    position: relative;
    max-width: 280px;
    opacity: 0;
    transform: translateY(20px);
    animation: stepReveal 1s ease forwards;
}

.energy-step:nth-child(1) { animation-delay: 0.3s; }
.energy-step:nth-child(2) { animation-delay: 0.6s; }
.energy-step:nth-child(3) { animation-delay: 0.9s; }

.step-node {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    cursor: pointer;
}

.node-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7B3F9C, #4A9B8E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(123, 63, 156, 0.3);
}

.node-inner:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(123, 63, 156, 0.4);
}

[data-theme="dark"] .node-inner {
    background: linear-gradient(135deg, var(--purple), var(--teal));
    box-shadow: 0 8px 30px rgba(201, 168, 232, 0.5);
}

[data-theme="dark"] .node-inner:hover {
    box-shadow: 0 15px 45px rgba(201, 168, 232, 0.6);
}

.step-symbol {
    font-size: 2rem;
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.3));
}

.node-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    opacity: 0.3;
    animation: nodePulse 2s ease-in-out infinite;
    z-index: 1;
}

.step-content {
    text-align: center;
    background: rgba(254, 253, 251, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(123, 63, 156, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .step-content {
    background: rgba(42, 31, 54, 0.9);
    border-color: rgba(201, 168, 232, 0.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.energy-step:hover .step-content {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(123, 63, 156, 0.2);
}

.step-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-description {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.energy-cta {
    text-align: center;
}

.cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.energy-btn {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, #7B3F9C, #4A9B8E);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(123, 63, 156, 0.3);
}

.energy-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 15px 32px rgba(123, 63, 156, 0.4);
}

[data-theme="dark"] .energy-btn {
    background: linear-gradient(135deg, #9B5FBC, #6BB5A8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .energy-btn:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
.btn-energy {
    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.6s ease;
}

.energy-btn:hover .btn-energy {
    left: 100%;
}

/* Animations */
@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(10px, -15px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-5px, -25px) scale(1.15);
        opacity: 1;
    }
    75% {
        transform: translate(8px, -15px) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes flowPath {
    0% { stroke-dashoffset: 16; }
    100% { stroke-dashoffset: 0; }
}

@keyframes nodePulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

@keyframes stepReveal {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonials Section */
.testimonials {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background: radial-gradient(ellipse at top, var(--purple-light), transparent 50%),
            radial-gradient(ellipse at bottom, rgba(74, 155, 155, 0.06), transparent 50%),
            var(--soft-white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(123, 63, 156, 0.04), transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(74, 155, 155, 0.04), transparent 50%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--text-dark), var(--purple), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--text-soft);
    font-style: italic;
}

.carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

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

.testimonial-slide.prev {
    transform: translateX(-80px);
}

.testimonial-card {
    background: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(123, 63, 156, 0.1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

[data-theme="dark"] .testimonial-card {
    background: rgba(37, 32, 51, 0.95);
    box-shadow: 0 15px 55px rgba(0, 0, 0, 0.6);
    border-color: rgba(155, 95, 188, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(123, 63, 156, 0.2);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 63, 156, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
    animation: rotateGlow 20s linear infinite;
}

.testimonial-slide.active .card-glow {
    opacity: 1;
}

.quote-mark {
    font-size: 4.5rem;
    color: var(--purple);
    opacity: 0.2;
    position: absolute;
    top: 0.8rem;
    left: 1.5rem;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-footer {
    border-top: 1px solid rgba(123, 63, 156, 0.1);
    padding-top: 1.2rem;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--purple);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot:hover,
.dot.active {
    background: var(--purple);
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(123, 63, 156, 0.4);
}

.dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid var(--purple);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.dot.active::after {
    opacity: 0.3;
    transform: scale(1);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(123, 63, 156, 0.9);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--purple);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 20px rgba(123, 63, 156, 0.4);
}

.carousel-arrow.prev {
    left: -20px;
}

.carousel-arrow.next {
    right: -20px;
}

.carousel-wrapper::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--teal));
    border-radius: 1px;
    animation: autoSlideProgress 5s linear infinite;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: radial-gradient(circle at top left, rgba(123, 63, 156, 0.08), transparent 60%),
            radial-gradient(circle at bottom right, rgba(74, 155, 155, 0.08), transparent 60%),
            radial-gradient(circle at center, rgba(212, 175, 55, 0.03), transparent 70%),
            var(--soft-white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.12), transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(123, 63, 156, 0.12), transparent 40%);
    pointer-events: none;
}

.contact-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--text-dark), var(--purple), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
    font-style: italic;
}

.contact-main {
    background: white;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(123, 63, 156, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

[data-theme="dark"] .contact-main {
    background: var(--soft-white);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.5);
    border-color: rgba(155, 95, 188, 0.15);
}

.primary-contact {
    background: linear-gradient(135deg, var(--purple), #8B5A9F);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
}

.primary-icon {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    display: block;
}

.primary-title {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.primary-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.3rem;
    line-height: 1.6;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.alternative-methods {
    padding: 1.8rem 1.5rem;
}

.alternatives-title {
    text-align: center;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.alternatives-subtitle {
    text-align: center;
    color: var(--text-soft);
    margin-bottom: 1.3rem;
    font-size: 0.85rem;
}

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

.method-card {
    padding: 1.3rem;
    border-radius: 12px;
    border: 1px solid rgba(123, 63, 156, 0.1);
    background: var(--purple-light);
    text-align: center;
    transition: all 0.2s ease;
}

.method-card:hover {
    transform: translateY(-2px);
    border-color: rgba(123, 63, 156, 0.2);
}

.method-icon {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
    display: block;
}

.method-title {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.method-desc {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-bottom: 0.9rem;
}

.method-btn {
    display: inline-block;
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.45rem 1.1rem;
    border: 1px solid var(--purple);
    border-radius: 18px;
    transition: all 0.2s ease;
}

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

.response-note {
    background: rgba(74, 155, 155, 0.08);
    padding: 1.3rem;
    text-align: center;
    border-top: 1px solid rgba(74, 155, 155, 0.1);
}

.response-icon {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.response-text {
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

[data-theme="dark"] footer {
    background: #0F0D14;
    color: rgba(255, 255, 255, 0.6);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animations */
@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes autoSlideProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        padding: 4rem 2rem;
    }

    .hero-mandala {
        width: 450px;
        height: 450px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-content {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
    }

    .timeline-dot {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto 1.5rem;
    }

     .collection-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                padding: 0 20px;
            }

            .collection-card.landscape .card-frame {
                max-width: 100%;
            }

            .collection-card.portrait .card-frame {
                max-width: 100%;
            }

            .testimonials-carousel {
        margin: 0 1rem;
    }
    
    .contact-main {
        margin: 0 1rem;
    }
}

 @media (max-width: 968px) {
            .energy-network {
                min-height: auto;
                padding: 2rem 0;
            }

            .energy-steps {
                flex-direction: column;
                gap: 3rem;
                min-height: auto;
            }

            .connection-lines {
                display: none;
            }

            .energy-step {
                max-width: 450px;
                width: 100%;
            }

             .carousel-arrow.prev {
        left: -15px;
    }
    
    .carousel-arrow.next {
        right: -15px;
    }
        }

@media (max-width: 768px) {
    .theme-toggle {
        top: 1rem;
        right: 1rem;
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .nav-link {
        width: 48px;
        height: 48px;
    }
    
    .benefits {
        padding: 4rem 1.5rem;
    }

    .benefits-title {
        font-size: 2.3rem;
    }

    .benefits-grid {
        display: none;
    }

    .benefits-carousel-wrapper {
        display: block;
        position: relative;
        margin-bottom: 4rem;
    }

    .benefits-carousel {
        position: relative;
        height: 450px;
        overflow: hidden;
        border-radius: 20px;
    }

    .gallery {
        padding: 4rem 1.5rem;
    }

    .gallery-title {
        font-size: 2.3rem;
    }

    .gallery-slider {
        padding: 1rem 0;
        overflow: hidden;
    }

    .gallery-track {
        justify-content: flex-start;
        gap: 0;
    }

    .gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
        height: 400px;
    }

    .gallery-item.landscape,
    .gallery-item.portrait {
        max-height: 400px;
        aspect-ratio: unset;
    }

    .gallery-item img {
        object-fit: contain;
        background: var(--soft-white);
    }

    .gallery-info {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(45, 27, 54, 0.85));
    }

    .gallery-arrow {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .benefit-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transform: translateX(80px);
        transition: all 0.8s ease;
        pointer-events: none;
    }

    .benefit-card.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    .benefit-card.prev {
        transform: translateX(-80px);
    }

    .carousel-dots-benefits {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .dot-benefit {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 1px solid var(--purple);
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot-benefit.active {
        background: var(--purple);
        transform: scale(1.15);
    }

    .carousel-arrow-benefit {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: none;
        background: rgba(123, 63, 156, 0.9);
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .carousel-arrow-benefit:hover {
        background: var(--purple);
        transform: translateY(-50%) scale(1.08);
    }

    .carousel-arrow-benefit.prev {
        left: -23px;
    }

    .carousel-arrow-benefit.next {
        right: -23px;
    }

    .purpose-section {
        padding: 2.5rem 1.8rem;
    }

    .purpose-title {
        font-size: 1.7rem;
    }

    .purpose-text {
        font-size: 1.1rem;
    }

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

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-mandala {
        width: 350px;
        height: 350px;
        order: 1;
        margin-bottom: 3rem;
    }

    .mandala-stats {
        flex-direction: row;
        gap: 0.95rem;
        margin: 1.5rem 0;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .benefits-intro {
        font-size: 1rem;
    }

    .about {
        padding: 4rem 1.5rem;
    }

    .about-title {
        font-size: 2.3rem;
    }

    .card-image {
        height: 400px;
    }

    .timeline-point {
        display: flex;
        flex-direction: column;
    }

    .timeline-dot {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 1.5rem;
        order: 1;
    }

    .timeline-content {
        order: 2;
    }

     .miradas {
                padding: 40px 15px;
            }

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

            .miradas-subtitle {
                font-size: 1.1rem;
            }

            .progress-bar {
                width: 250px;
            }

            .collection-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 0 15px;
                max-width: 500px;
            }

            .collection-card {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }

            .collection-card:nth-child(odd),
            .collection-card:nth-child(even) {
                transform: none !important;
            }

            .collection-card:hover {
                transform: translateY(-5px) !important;
            }

            .collection-card.landscape .card-frame,
            .collection-card.portrait .card-frame {
                max-width: 100%;
                width: 100%;
            }

            .card-overlay {
                opacity: 1;
                transform: translateY(0);
                background: linear-gradient(transparent 50%, rgba(45, 27, 54, 0.9));
            }

             .personal-note {
        padding: 30px 25px;
        transform: none;
        margin: 40px 15px 0;
    }

    .note-text {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }

    .updates-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .instagram-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 320px;
    }

    .btn-icon {
        font-size: 1.1rem;
    }

            .modal.active {
                padding: 10px;
                align-items: flex-start;
            }

            .modal-content {
                max-height: 95vh;
                margin-top: 20px;
                margin-bottom: 20px;
                border-radius: 15px;
            }

            .modal-close {
                top: 10px;
                right: 10px;
                width: 36px;
                height: 36px;
                font-size: 20px;
            }

            .modal-image-container {
                padding: 15px;
                border-radius: 15px 15px 0 0;
            }

            .modal-image {
                max-height: 50vh;
            }

            .modal-body {
                padding: 25px 20px;
            }

            .modal-title {
                font-size: 1.8rem;
            }

            .modal-date {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }

            .modal-description {
                font-size: 1rem;
                line-height: 1.7;
                text-align: left;
            }

            .modal-reel-btn {
                padding: 12px 25px;
                font-size: 0.9rem;
                width: 100%;
                max-width: 300px;
            }

            .energy-process {
                padding: 4rem 1rem;
            }

            .process-title {
                font-size: 2.3rem;
            }

            .process-subtitle {
                font-size: 1.05rem;
            }

            .energy-step {
                max-width: 400px;
                padding: 0 1rem;
            }

            .step-node {
                width: 75px;
                height: 75px;
            }

            .step-title {
                font-size: 1.15rem;
            }

            .step-description {
                font-size: 0.95rem;
            }

              .testimonials, .contact {
        padding: 4rem 1rem;
    }
    
    .testimonials-title, .contact-title {
        font-size: 2.3rem;
    }
    
    .testimonials-container, .contact-container {
        padding: 0;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .testimonials-header, .contact-header {
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .testimonials-carousel {
        min-height: 380px;
        height: auto;
        margin: 0 1.5rem;
    }
    
    .testimonial-card {
        padding: 2.5rem 2rem;
        height: auto;
        min-height: 300px;
    }
    
    .quote-mark {
        font-size: 4rem;
        top: 0.5rem;
        left: 1.2rem;
    }
    
    .carousel-arrow {
        width: 46px;
        height: 46px;
    }
    
    .carousel-arrow.prev {
        left: -23px;
    }
    
    .carousel-arrow.next {
        right: -23px;
    }
    
    .contact-main {
        margin: 0 1.5rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .method-card {
        padding: 1.6rem;
    }
}

@media (max-width: 480px) {
    .theme-toggle {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

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

    .hero-mandala {
        width: 280px;
        height: 280px;
    }

       .bottom-nav {
        padding: 0.6rem 0.7rem;
        bottom: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .nav-links {
        gap: 0.3rem;
    }
    
    .nav-link {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }

    .card-image {
        height: 350px;
    }

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

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

            .one-subtitle {
                font-size: 0.9rem;
                padding: 6px 12px;
            }

            .progress-bar {
                width: 200px;
            }

            .collection-card {
                max-width: 100%;
            }

            .info-title {
                font-size: 1.1rem;
            }

            .info-date {
                font-size: 0.85rem;
            }

             .personal-note {
        padding: 25px 20px;
        margin: 30px 15px 0;
    }

    .note-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .updates-text {
        font-size: 0.9rem;
    }

    .instagram-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .btn-icon {
        font-size: 1rem;
    }

            .modal-title {
                font-size: 1.5rem;
            }

            .modal-description {
                font-size: 0.95rem;
            }

            .modal-body {
                padding: 20px 15px;
            }

             .energy-process {
                padding: 3.5rem 1rem;
            }

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

            .step-node {
                width: 70px;
                height: 70px;
            }

            .step-content {
                padding: 1.4rem 1.1rem;
            }

            .cta-text {
                font-size: 1.05rem;
            }

            .energy-btn {
                padding: 0.95rem 1.8rem;
                font-size: 0.95rem;
            }

             .testimonials, .contact {
        padding: 3.5rem 1rem;
    }
    
    .testimonials-title, .contact-title {
        font-size: 2rem;
    }
    
    .testimonials-container, .contact-container {
        padding: 0;
    }
    
    .testimonials-header, .contact-header {
        padding: 0 1.2rem;
    }
    
    .about-subtitle {
        font-size: 0.9rem;
    }
    
    .testimonials-carousel {
        min-height: 400px;
        margin: 0 1.2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        min-height: 320px;
    }
    
    .quote-mark {
        font-size: 3.5rem;
        top: 0.3rem;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
        margin-bottom: 1.8rem;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .carousel-dots {
        gap: 1rem;
    }
    
    .dot {
        width: 11px;
        height: 11px;
    }
    
    .contact-subtitle {
        font-size: 1.05rem;
    }
    
    .contact-main {
        margin: 0 1.2rem;
    }
    
    .primary-contact {
        padding: 2.3rem 1.5rem;
    }
    
    .primary-title {
        font-size: 1.4rem;
    }
    
    .primary-btn {
        padding: 0.95rem 1.8rem;
    }
    
    .alternative-methods {
        padding: 1.8rem 1.5rem;
    }
    
    .method-card {
        padding: 1.5rem 1.2rem;
    }
    
    .method-btn {
        padding: 0.5rem 1.2rem;
    }
    
    .response-note {
        padding: 1.5rem 1.2rem;
    }
}

@media (max-width: 360px) {
    .theme-toggle {
        width: 42px;
        height: 42px;
        top: 0.8rem;
        right: 0.8rem;
    }

            .process-title {
                font-size: 1.8rem;
            }

            .energy-step {
                padding: 0 0.8rem;
            }

            .step-node {
                width: 65px;
                height: 65px;
            }

            .step-symbol {
                font-size: 1.8rem;
            }

            .testimonials, .contact {
        padding: 3rem 0.8rem;
    }
    
    .testimonials-title, .contact-title {
        font-size: 1.8rem;
    }
    
    .testimonials-carousel {
        min-height: 380px;
        margin: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.8rem 1.3rem;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .testimonial-text {
        font-size: 0.98rem;
    }
    
    .contact-main {
        margin: 0 1rem;
    }
    
    .primary-contact {
        padding: 2rem 1.3rem;
    }
    
    .primary-title {
        font-size: 1.3rem;
    }
    
    .alternative-methods {
        padding: 1.6rem 1.3rem;
    }
    
    .method-card {
        padding: 1.3rem 1rem;
    }
}

 /* Corner Card Container - Compact Size */
      .corner-card {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 320px;
        background: var(--soft-white);
        border-radius: 20px;
        box-shadow: 0 12px 40px rgba(45, 27, 54, 0.25);
        z-index: 10000;
        overflow: hidden;
        transform: translateX(370px);
        opacity: 0;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(123, 63, 156, 0.12);
      }

      .corner-card.active {
        transform: translateX(0);
        opacity: 1;
      }

      /* Close Button */
      .card-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: none;
        border-radius: 50%;
        color: var(--text-soft);
        font-size: 20px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      }

      .card-close:hover {
        background: white;
        color: var(--purple);
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 6px 16px rgba(123, 63, 156, 0.3);
      }

      /* Card Image - Compact */
      .card-image2 {
        width: 100%;
        height: 140px;
        background: linear-gradient(135deg, var(--purple), var(--teal));
        position: relative;
        overflow: hidden;
        cursor: pointer;
      }

      .card-image2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.92;
        transition: transform 0.7s ease;
      }

      .corner-card:hover .card-image2 img {
        transform: scale(1.08);
      }

      .card-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--purple);
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
      }

      /* Card Content - Compact */
      .card-content {
        padding: 18px;
        cursor: pointer;
      }

      .card-title {
        font-size: 1.5rem;
        color: var(--text-dark);
        margin: 0 0 6px 0;
        font-weight: 700;
        background: linear-gradient(135deg, var(--text-dark), var(--purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 1px;
      }

      .card-subtitle {
        font-size: 0.85rem;
        color: var(--text-soft);
        margin: 0 0 14px 0;
        font-style: italic;
        font-weight: 400;
      }

      .card-stats {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 0;
      }

      .stat {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        color: var(--text-dark);
        font-weight: 500;
        padding: 8px 12px;
        background: linear-gradient(
          135deg,
          rgba(123, 63, 156, 0.06),
          rgba(74, 155, 142, 0.06)
        );
        border-radius: 16px;
        border: 1px solid rgba(123, 63, 156, 0.1);
      }

      .stat-icon {
        font-size: 1rem;
      }

      /* Expand/Collapse Hint - Compact */
      .expand-hint {
        text-align: center;
        padding: 12px;
        background: linear-gradient(to top, var(--cream), transparent);
        font-size: 0.8rem;
        color: var(--text-soft);
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
      }

      .expand-hint:hover {
        color: var(--purple);
        background: linear-gradient(
          to top,
          rgba(123, 63, 156, 0.08),
          transparent
        );
      }

      .expand-hint .arrow {
        display: inline-block;
        transition: transform 0.3s ease;
        font-size: 1rem;
      }

      /* Modal Overlay */
      .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(45, 27, 54, 0.85);
        backdrop-filter: blur(8px);
        z-index: 10001;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        padding: 20px;
      }

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

      /* Modal Container */
      .modal-container {
        background: var(--soft-white);
        border-radius: 24px;
        max-width: 1000px;
        width: 100%;
        max-height: 90vh;
        overflow: hidden;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
        transform: scale(0.9) translateY(30px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: row;
        position: relative;
      }

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

      /* Modal Close Button */
      .modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: none;
        border-radius: 50%;
        color: var(--text-soft);
        font-size: 24px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      }

      .modal-close:hover {
        background: white;
        color: var(--purple);
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 6px 16px rgba(123, 63, 156, 0.4);
      }

      /* Modal Left Side - Image */
      .modal-left {
        flex: 1.8;
        min-height: 500px;
        background: #2d1b36;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .modal-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 1;
      }

      .modal-badge {
        position: absolute;
        top: 24px;
        left: 24px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        padding: 10px 18px;
        border-radius: 24px;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--purple);
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
      }

      /* Modal Right Side - Content */
      .modal-right {
        flex: 1;
        padding: 40px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        max-width: 450px;
      }

      .modal-title {
        font-size: 2.5rem;
        color: var(--text-dark);
        margin: 0 0 10px 0;
        font-weight: 700;
        background: linear-gradient(135deg, var(--text-dark), var(--purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 1px;
        font-family: "Lora", serif;
      }

      .modal-subtitle {
        font-size: 1.1rem;
        color: var(--text-soft);
        margin: 0 0 24px 0;
        font-style: italic;
        font-weight: 400;
      }

      .modal-description {
        font-size: 1rem;
        line-height: 1.8;
        color: var(--text-dark);
        margin-bottom: 24px;
        font-weight: 400;
      }

      /* Modal Elements Grid */
      .modal-elements-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 24px;
      }

      .modal-element-card {
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.9),
          rgba(248, 246, 240, 0.6)
        );
        padding: 14px;
        border-radius: 12px;
        text-align: center;
        border: 1px solid rgba(123, 63, 156, 0.15);
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .modal-element-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(123, 63, 156, 0.2);
        border-color: var(--purple);
      }

      .modal-element-icon {
        font-size: 1.8rem;
        margin-bottom: 6px;
      }

      .modal-element-name {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-dark);
        font-family: "Lora", serif;
      }

      /* Modal Gallery Info */
      .modal-gallery-info {
        background: linear-gradient(
          135deg,
          rgba(123, 63, 156, 0.1),
          rgba(74, 155, 142, 0.1)
        );
        padding: 20px;
        border-radius: 14px;
        margin-bottom: 24px;
        border: 1px solid rgba(123, 63, 156, 0.2);
      }

      .modal-gallery-info h4 {
        margin: 0 0 12px 0;
        font-size: 1.1rem;
        color: var(--purple);
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
        letter-spacing: 0.3px;
      }

      .modal-gallery-info p {
        margin: 6px 0;
        font-size: 0.95rem;
        color: var(--text-dark);
        line-height: 1.6;
      }

      .modal-gallery-info .date {
        font-weight: 700;
        color: var(--teal);
        margin-top: 10px;
        font-size: 1rem;
      }

      /* Modal Actions */
      .modal-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
      }

      .modal-btn {
        padding: 14px 20px;
        border-radius: 28px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        text-align: center;
        transition: all 0.4s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        border: none;
      }

      .modal-btn-primary {
        background: linear-gradient(135deg, var(--purple), var(--teal));
        color: white;
        box-shadow: 0 6px 16px rgba(123, 63, 156, 0.35);
      }

      .modal-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 24px rgba(123, 63, 156, 0.5);
      }

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

      .modal-btn-secondary:hover {
        background: var(--purple-light);
        transform: translateY(-2px);
      }

      .modal-btn-calendar {
        background: linear-gradient(135deg, var(--gold), #e6c14a);
        color: white;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
      }

      .modal-btn-calendar:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
      }

      .modal-button-row {
        display: flex;
        gap: 12px;
      }

      .modal-button-row .modal-btn {
        flex: 1;
      }

      /* Don't Show Again Checkbox */
      .dont-show-container {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 16px;
        background: rgba(123, 63, 156, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(123, 63, 156, 0.1);
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .dont-show-container:hover {
        background: rgba(123, 63, 156, 0.08);
        border-color: var(--purple);
      }

      .dont-show-container input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        accent-color: var(--purple);
      }

      .dont-show-container label {
        font-size: 0.9rem;
        color: var(--text-dark);
        cursor: pointer;
        font-weight: 500;
      }

      /* Pulse Animation */
      @keyframes subtlePulse {
        0%,
        100% {
          box-shadow: 0 20px 60px rgba(45, 27, 54, 0.3);
        }
        50% {
          box-shadow: 0 20px 65px rgba(123, 63, 156, 0.4);
        }
      }

      .corner-card.active {
        animation: subtlePulse 4s ease-in-out infinite;
      }

      /* Mobile Responsive */
      @media (max-width: 768px) {
        .corner-card {
          right: 15px;
          bottom: 20px;
          width: calc(100vw - 30px);
          max-width: 340px;
        }

        .card-image2 {
          height: 120px;
        }

        .card-content {
          padding: 16px;
        }

        .card-title {
          font-size: 1.3rem;
        }

        /* Modal Responsive */
        .modal-container {
          flex-direction: column;
          max-height: 95vh;
        }

        .modal-left {
          min-height: 200px;
          max-height: 300px;
          flex: none;
        }

        .modal-left img {
          padding: 10px;
        }

        .modal-right {
          padding: 24px;
          max-width: 100%;
        }

        .modal-title {
          font-size: 1.8rem;
        }

        .modal-elements-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .modal-button-row {
          flex-direction: column;
        }
      }

      @media (max-width: 480px) {
        .corner-card {
          right: 10px;
          bottom: 15px;
          width: calc(100vw - 20px);
        }

        .card-image2 {
          height: 110px;
        }

        .card-title {
          font-size: 1.2rem;
        }

        .card-subtitle {
          font-size: 0.8rem;
        }

        .stat {
          font-size: 0.75rem;
          padding: 6px 10px;
        }

        .modal-left {
          min-height: 180px;
          max-height: 220px;
        }

        .modal-left img {
          padding: 8px;
        }

        .modal-right {
          padding: 20px;
        }

        .modal-title {
          font-size: 1.6rem;
        }

        .modal-description {
          font-size: 0.95rem;
        }

        .modal-gallery-info p {
          font-size: 0.9rem;
        }
      }

      @media (min-width: 1200px) {
        .modal-container {
          max-width: 1100px;
        }

        .modal-left {
          flex: 1.5;
        }

        /* .modal-left img {
          padding: 30px;
        } */
      }