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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0d0405;
    color: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
}

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

.hero p,
.product-content p,
.occasion-card p,
.utsanzi-tagline,
.contact-info-label,
.footer-section a,
footer p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 0.3px;
}

html {
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
}

.hero, .product-section, .occasions, .cta-section {
    scroll-snap-align: start;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 107, 0.3));
}

.hero-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    filter: drop-shadow(0 4px 20px rgba(255, 107, 107, 0.5));
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: transparent;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0d0405;
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-nav.active {
    display: flex;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.nav-content {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nav-links-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: linear-gradient(135deg, #1a0505 0%, #0d0405 100%);
    position: relative;
    overflow: hidden;
}

.nav-links-side:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.15) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links-side ul {
    list-style: none;
    position: relative;
    z-index: 2;
}

.nav-links-side li {
    margin: 30px 0;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-nav.active .nav-links-side li {
    opacity: 1;
    transform: translateX(0);
}

.fullscreen-nav.active .nav-links-side li:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-nav.active .nav-links-side li:nth-child(2) { transition-delay: 0.2s; }
.fullscreen-nav.active .nav-links-side li:nth-child(3) { transition-delay: 0.3s; }
.fullscreen-nav.active .nav-links-side li:nth-child(4) { transition-delay: 0.4s; }
.fullscreen-nav.active .nav-links-side li:nth-child(5) { transition-delay: 0.5s; }

.nav-links-side a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    padding-left: 0;
}

.nav-links-side a:before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b, #c44569);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links-side a:hover:before {
    width: 30px;
}

.nav-links-side a:hover {
    padding-left: 20px;
    background: linear-gradient(135deg, #ff6b6b, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.05);
}

.nav-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.nav-image-side:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #0d0405 0%, transparent 30%);
    z-index: 1;
}

.nav-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bg-image.active {
    opacity: 1;
    transform: scale(1);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #0d0405;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images-pw.pixieset.com/elementfield/OEka7rw/7O5A2864-e9fd3003-1000.JPG?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(139, 0, 0, 0.6) 0%, rgba(13, 4, 5, 0.8) 70%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 1;
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #ff6b6b 50%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero p {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

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

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #8b0000, #c44569);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.6);
}

.product-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: filter 0.6s ease, opacity 0.6s ease;
    scroll-snap-align: start;
}

.product-section:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0505 0%, #0d0405 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 0.3s ease-out;
}

.product-section:hover .product-image img {
    transform: scale(1.2);
}

.product-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(13, 4, 5, 0.3));
    transition: opacity 0.5s ease;
}

.product-section:hover .product-image:after {
    opacity: 0.7;
}

.product-content {
    flex: 1;
    padding: 100px 80px;
    background: linear-gradient(135deg, #1a0505 0%, #0d0405 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.product-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.product-section:hover .product-content:before {
    opacity: 1;
}

.product-number {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(196, 69, 105, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
}

.product-content h2 {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
}

.product-features {
    list-style: none;
    margin-bottom: 40px;
}

.product-features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: all 0.3s ease;
}

.product-features li:hover {
    padding-left: 10px;
    border-color: rgba(139, 0, 0, 0.5);
    color: #ff6b6b;
}

.explore-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #ff6b6b;
    text-decoration: none;
    border: 2px solid #8b0000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
    width: fit-content;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.explore-btn:hover {
    background: linear-gradient(135deg, #8b0000, #c44569);
    color: #fff;
    border-color: transparent;
    transform: translateX(5px);
}

.contact-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.button-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 40px;
    background: transparent;
    color: #25D366;
    text-decoration: none;
    border: 2px solid #25D366;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.whatsapp-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 0;
}

.whatsapp-btn:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    transform: translateX(5px);
}

.whatsapp-btn:hover img {
    filter: brightness(0) invert(1);
}

.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    color: #ff6b6b;
    text-decoration: none;
    border: 2px solid #ff6b6b;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
    flex-shrink: 0;
}

.call-btn:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(135deg, #ff6b6b, #c44569);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-icon {
    font-size: 22px;
    line-height: 1;
}

.section-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    background: linear-gradient(135deg, #fff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.occasions {
    padding: 150px 0;
    position: relative;
    background: linear-gradient(180deg, #0d0405 0%, #1a0a0d 100%);
    overflow: hidden;
    z-index: 50;
}

.occasions-carousel {
    position: relative;
    max-width: 100%;
    padding: 0 60px;
}

.occasions-track {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    animation: scrollCarousel 30s linear infinite;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 6));
    }
}

.occasions-track:hover {
    animation-play-state: paused;
}

.occasion-card {
    min-width: 320px;
    max-width: 320px;
    height: 480px;
    border-radius: 30px;
    padding: 50px 35px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), rgba(196, 69, 105, 0.1));
    border: 1px solid rgba(139, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: grab;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.occasion-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(13, 4, 5, 0.95) 0%, rgba(13, 4, 5, 0.7) 40%, rgba(13, 4, 5, 0.3) 100%);
    z-index: 0;
}

.occasion-card:active {
    cursor: grabbing;
}

.occasion-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.occasion-card:hover:before {
    opacity: 1;
}

.occasion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(139, 0, 0, 0.4);
    border-color: rgba(139, 0, 0, 0.5);
}

.occasion-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.occasion-card p {
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
}

.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    pointer-events: all;
}

.contact-modal-content {
    background: linear-gradient(135deg, #1a0505 0%, #0d0405 100%);
    padding: 50px;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(139, 0, 0, 0.3);
    text-align: center;
}

.modal-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ff6b6b;
}

.utsanzi-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b0000, #c44569);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 20px;
}

.utsanzi-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(139, 0, 0, 0.2);
    transform: translateX(5px);
}

.contact-info-icon {
    font-size: 24px;
    margin-right: 15px;
}

.contact-info-text {
    text-align: left;
    flex: 1;
}

.contact-info-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.contact-info-value {
    font-size: 16px;
    color: #fff;
}

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

.contact-info-value a:hover {
    color: #ff6b6b;
}

.utsanzi-cta {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #8b0000, #c44569);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 30px;
    transition: all 0.4s ease;
}

.utsanzi-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.6);
}

footer {
    padding: 40px 60px;
    background: #0d0405;
    border-top: 1px solid rgba(139, 0, 0, 0.3);
    text-align: center;
}

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

footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

footer a {
    color: #ff6b6b;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

footer a:hover {
    color: #c44569;
    border-bottom-color: #c44569;
}

.particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: rgba(139, 0, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: float 20s infinite;
}

/* Flower Petals */
.petal {
    position: fixed;
    pointer-events: none;
    z-index: 9999 !important;
    opacity: 1 !important;
    will-change: transform, opacity;
    display: block !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.petal-rose {
    width: 40px;
    height: 35px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    background-image: url('https://png.pngtree.com/png-vector/20250205/ourmid/pngtree-red-rose-petals-aesthetic-romantic-border-png-image_15387976.png');
    border-radius: 50% 30%;
}

.petal-pink {
    width: 35px;
    height: 30px;
    background: linear-gradient(135deg, #ff9966, #ff6633);
    background-image: url('https://static.vecteezy.com/system/resources/thumbnails/059/245/791/small/orange-tulip-petal-png.png');
    border-radius: 45% 55% 40% 60%;
}

.petal-white {
    width: 38px;
    height: 33px;
    background: linear-gradient(135deg, #ff3366, #cc0033);
    background-image: url('https://static.vecteezy.com/system/resources/thumbnails/065/388/661/small/red-rose-petal-png.png');
    border-radius: 50% 40%;
}

.petal-lavender {
    width: 36px;
    height: 32px;
    background: linear-gradient(135deg, #cc99ff, #9966cc);
    background-image: url('https://png.pngtree.com/png-vector/20250205/ourmid/pngtree-red-rose-petals-aesthetic-romantic-border-png-image_15387976.png');
    border-radius: 55% 45%;
    filter: hue-rotate(270deg) brightness(1.2);
}

@keyframes petalFallAndSwing {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    3% {
        opacity: 1;
    }
    10% {
        transform: translateY(10vh) translateX(15px) rotate(40deg);
    }
    20% {
        transform: translateY(20vh) translateX(35px) rotate(80deg);
    }
    30% {
        transform: translateY(30vh) translateX(45px) rotate(120deg);
    }
    40% {
        transform: translateY(40vh) translateX(35px) rotate(160deg);
    }
    50% {
        transform: translateY(50vh) translateX(10px) rotate(200deg);
    }
    60% {
        transform: translateY(60vh) translateX(-25px) rotate(240deg);
    }
    70% {
        transform: translateY(70vh) translateX(-45px) rotate(280deg);
    }
    80% {
        transform: translateY(80vh) translateX(-40px) rotate(320deg);
    }
    90% {
        transform: translateY(90vh) translateX(-20px) rotate(360deg);
    }
    100% {
        transform: translateY(110vh) translateX(0px) rotate(400deg);
        opacity: 1;
    }
}

.petal.falling {
    animation: petalFallAndSwing 7s linear forwards;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .product-section {
        flex-direction: column !important;
        min-height: 100vh;
        height: auto;
    }

    .product-image {
        height: 45vh;
        width: 100%;
        position: relative;
    }

    .product-image img {
        transform: scale(1);
    }

    .product-section:hover .product-image img {
        transform: scale(1.05);
    }

    .product-content {
        padding: 50px 40px;
        background: linear-gradient(to bottom, rgba(13, 4, 5, 0.98), #0d0405);
    }

    .product-number {
        font-size: 80px;
    }

    .nav-image-side {
        display: none;
    }

    .nav-links-side {
        flex: 1;
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(40px, 10vw, 80px);
    }

    .hero p {
        font-size: clamp(16px, 4vw, 20px);
    }
}

@media (max-width: 768px) {
    html {
        scroll-snap-type: none;
    }

    nav {
        padding: 15px 20px;
        background: rgba(13, 4, 5, 0.95);
        backdrop-filter: blur(10px);
    }

    .logo {
    font-size: 18px;
    gap: 8px;
}

.logo-icon {
    width: 26px;
    height: 26px;
}

.hero-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero:before {
        opacity: 0.4;
    }

    .hero h1 {
        font-size: clamp(36px, 12vw, 64px);
        margin-bottom: 20px;
    }

    .hero p {
        font-size: clamp(14px, 4vw, 18px);
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 14px;
    }

    .product-section {
        flex-direction: column !important;
        min-height: auto;
        height: auto;
        scroll-snap-align: none;
    }

    .product-image {
        height: 50vh;
        min-height: 350px;
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .product-image:after {
        background: linear-gradient(to bottom, transparent 0%, rgba(13, 4, 5, 0.3) 50%, rgba(13, 4, 5, 0.95) 100%);
    }

    .product-image img {
        transform: scale(1.1);
        filter: brightness(0.9);
    }

    .product-section:hover .product-image img {
        transform: scale(1.15);
    }

    .product-content {
        padding: 40px 25px 60px;
        background: linear-gradient(to bottom, rgba(13, 4, 5, 0.98) 0%, #0d0405 20%);
        position: relative;
        z-index: 2;
        margin-top: -100px;
        border-radius: 30px 30px 0 0;
    }

    .product-number {
        font-size: 72px;
        opacity: 0.5;
        margin-bottom: 15px;
    }

    .product-content h2 {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 20px;
    }

    .product-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .product-features {
        margin-bottom: 30px;
    }

    .product-features li {
        padding: 12px 0;
        font-size: 14px;
    }

    .explore-btn {
        padding: 14px 35px;
        font-size: 13px;
    }

    .button-row {
        gap: 12px;
        justify-content: flex-start;
    }

    .whatsapp-btn {
        padding: 12px 25px;
        font-size: 13px;
        gap: 6px;
    }

    .whatsapp-btn img {
        width: 18px;
        height: 18px;
    }

    .call-btn {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
        font-size: 20px;
    }

    .btn-icon {
        font-size: 20px;
    }

    .product-content h2,
    .product-content p,
    .product-features li {
        filter: none !important;
        opacity: 1 !important;
    }

    .section-title {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .occasions {
        padding: 80px 0 60px;
    }

    footer {
        padding: 40px 20px;
    }

    .nav-links-side {
        padding: 60px 30px;
    }

    .nav-links-side a {
        font-size: clamp(28px, 8vw, 48px);
    }

    .occasions-carousel {
        padding: 0 20px;
    }

    .occasions-track {
        animation: scrollCarousel 40s linear infinite;
    }

    .occasion-card {
        min-width: 280px;
        max-width: 280px;
        height: 420px;
        padding: 35px 30px;
        border-radius: 25px;
    }

    .occasion-card h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .occasion-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-modal-content {
        padding: 40px 30px;
        width: 95%;
        max-width: 400px;
    }

    .utsanzi-logo {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .contact-info-item {
        padding: 18px;
        margin-bottom: 12px;
    }

    .contact-info-icon {
        font-size: 20px;
        margin-right: 12px;
    }

    .contact-info-value {
        font-size: 14px;
    }

    .utsanzi-cta {
        padding: 16px 35px;
        font-size: 14px;
        margin-top: 25px;
    }

    .cta-section {
        min-height: 80vh;
        padding: 60px 0;
    }

    .cta-content {
        padding: 0 25px;
    }

    .cta-content h2 {
        font-size: clamp(36px, 10vw, 64px);
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: clamp(16px, 4vw, 22px);
        margin-bottom: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-primary, .cta-secondary {
        padding: 18px 45px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .product-content {
        padding: 35px 20px 50px;
        margin-top: -80px;
    }

    .product-number {
        font-size: 60px;
    }

    .product-content h2 {
        font-size: clamp(28px, 9vw, 40px);
    }

    .product-features li {
        font-size: 13px;
    }

    .occasion-card {
        min-width: 260px;
        max-width: 260px;
        height: 400px;
        padding: 30px 25px;
    }

    .occasion-card h3 {
        font-size: 24px;
    }

    .occasion-card p {
        font-size: 13px;
    }
}


/* Contact Section */
.contact-section {
    padding: 150px 60px;
    background: linear-gradient(180deg, #1a0a0d 0%, #0d0405 100%);
    position: relative;
    overflow: hidden;
}

.contact-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.contact-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(196, 69, 105, 0.05));
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 0, 0, 0.5);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.3);
}

.contact-card:hover:before {
    opacity: 1;
}

.contact-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.contact-link {
    display: inline-block;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c44569;
}

.contact-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), rgba(196, 69, 105, 0.1));
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.contact-cta:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
    animation: rotateGlow 15s linear infinite;
}

.contact-cta h3 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.contact-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contact-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
}

.contact-primary-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.contact-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    background: transparent;
    color: #ff6b6b;
    text-decoration: none;
    border: 2px solid #ff6b6b;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
}

.contact-secondary-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #c44569);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

/* Coming Soon Modal */
.coming-soon-modal {
    max-width: 550px;
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b0000, #c44569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(139, 0, 0, 0);
    }
}

.coming-soon-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 25px;
    }

    .contact-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .contact-card-icon {
        font-size: 40px;
    }

    .contact-cta {
        padding: 40px 25px;
    }

    .contact-cta h3 {
        font-size: clamp(20px, 6vw, 28px);
        margin-bottom: 25px;
    }

    .contact-buttons-group {
        flex-direction: column;
        gap: 15px;
    }

    .contact-primary-btn,
    .contact-secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

