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

:root {
    --primary: #7A1F37;
    --secondary: #D4AF37;
    --bg-light: #FAF8F5;
    --bg-white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --shadow: rgba(122, 31, 55, 0.1);
    --shadow-hover: rgba(122, 31, 55, 0.2);
    --gradient: linear-gradient(135deg, #7A1F37 0%, #D4AF37 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background: linear-gradient(to bottom, #FFFFFF 0%, #FAF8F5 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 30px;
}

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

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(250, 248, 245, 1) 0%, 
        rgba(255, 252, 248, 1) 30%,
        rgba(250, 245, 238, 1) 60%,
        rgba(255, 252, 248, 1) 100%);
    background-size: 200% 200%;
    animation: subtleGradient 20s ease infinite;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(122, 31, 55, 0.04) 0%, transparent 50%);
    animation: gentlePulse 15s ease-in-out infinite;
    z-index: -1;
}

@keyframes subtleGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    animation: fadeUp 1s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: titleReveal 1.2s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    animation: subtitleReveal 1s ease-out 0.6s both;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    animation: slideIn 0.8s ease-out 0.2s both;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary);
    border-color: var(--primary);
    animation: slideIn 0.8s ease-out 0.4s both;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    animation: slideIn 0.8s ease-out 0.6s both;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 10px 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(250, 248, 245, 0.9));
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 2px 8px rgba(122, 31, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 31, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.hero-card {
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-card-inner {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, #7A1F37 0%, #9B2A47 30%, #D4AF37 70%, #F0D678 100%);
    border-radius: 24px;
    box-shadow: 
        0 25px 80px rgba(122, 31, 55, 0.25),
        0 8px 24px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Shimmer effect overlay */
.hero-card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 4s infinite;
    transform: rotate(45deg);
    z-index: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Abstract Geometric Shapes */
.abstract-shape {
    position: absolute;
    z-index: 2;
}

/* Large Floating Circles */
.shape-circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 15%;
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 0 30px rgba(212, 175, 55, 0.2);
    animation: floatCircle 8s ease-in-out infinite;
}

.shape-circle-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 20%;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
    animation: floatCircle 10s ease-in-out infinite 2s;
}

.shape-circle-3 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 60%;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    animation: floatCircle 12s ease-in-out infinite 4s;
}

/* Hexagon Shape */
.shape-hexagon {
    width: 70px;
    height: 70px;
    top: 30%;
    right: 25%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    animation: rotateFloat 15s linear infinite;
}

/* Ring Shape */
.shape-ring {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 25%;
    border: 4px solid rgba(212, 175, 55, 0.7);
    border-radius: 50%;
    background: transparent;
    box-shadow: 
        0 0 35px rgba(212, 175, 55, 0.5),
        inset 0 0 35px rgba(212, 175, 55, 0.2);
    animation: rotateFloat 20s linear infinite reverse;
}

/* Floating Gold Particles */
.gold-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #D4AF37, #F0D678);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
    z-index: 3;
    animation: floatParticle 12s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.particle-2 {
    top: 45%;
    right: 35%;
    width: 6px;
    height: 6px;
    animation-delay: 2s;
}

.particle-3 {
    bottom: 30%;
    left: 40%;
    animation-delay: 4s;
}

.particle-4 {
    top: 70%;
    right: 25%;
    width: 10px;
    height: 10px;
    animation-delay: 1s;
}

.particle-5 {
    top: 35%;
    left: 70%;
    width: 7px;
    height: 7px;
    animation-delay: 3s;
}

.particle-6 {
    bottom: 45%;
    right: 15%;
    animation-delay: 5s;
}

/* Light Rays */
.light-ray {
    position: absolute;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 1;
    animation: rotateRay 25s linear infinite;
}

.ray-1 {
    width: 300px;
    height: 2px;
    top: 25%;
    left: 50%;
    transform-origin: left center;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.ray-2 {
    width: 250px;
    height: 2px;
    bottom: 30%;
    right: 40%;
    transform-origin: right center;
    transform: rotate(-30deg);
    animation-delay: 8s;
}

.ray-3 {
    width: 200px;
    height: 2px;
    top: 55%;
    left: 20%;
    transform-origin: left center;
    transform: rotate(60deg);
    animation-delay: 15s;
}

/* Glowing Orbs */
.glowing-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0));
    filter: blur(20px);
    z-index: 1;
    animation: pulseOrb 6s ease-in-out infinite;
}

.orb-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 120px;
    height: 120px;
    bottom: 25%;
    left: 30%;
    animation-delay: 3s;
}

/* Animations */
@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(20px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-15px, -20px) scale(0.9);
        opacity: 0.7;
    }
}

@keyframes rotateFloat {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    50% {
        transform: rotate(180deg) translate(10px, -10px);
    }
    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -40px) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translate(15px, -30px) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes rotateRay {
    0% {
        opacity: 0.3;
        transform: rotate(0deg);
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0.3;
        transform: rotate(360deg);
    }
}

@keyframes pulseOrb {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

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

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    border-radius: 2px;
    opacity: 0.6;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(122, 31, 55, 0.3), transparent);
    border-radius: 2px;
    opacity: 0.4;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* TikTok Love Section */
.tiktok-love {
    background: linear-gradient(135deg, 
        rgba(255, 0, 80, 0.05) 0%,
        rgba(0, 242, 234, 0.05) 50%,
        rgba(255, 0, 80, 0.05) 100%);
    background-size: 200% 200%;
    animation: tiktokGradient 8s ease infinite;
    position: relative;
    overflow: hidden;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, 
        transparent 0%,
        rgba(212, 175, 55, 0.3) 20%,
        rgba(212, 175, 55, 0.5) 50%,
        rgba(212, 175, 55, 0.3) 80%,
        transparent 100%) 1;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.tiktok-love::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 80, 0.08) 0%, transparent 50%);
    animation: tiktokPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes tiktokGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes tiktokPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.tiktok-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
}

.tiktok-header.reveal {
    animation: revealUp 0.6s ease-out forwards;
}

.tiktok-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FAF9F7 100%);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(255, 0, 80, 0.1),
        0 2px 8px rgba(0, 242, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.reveal {
    animation: revealUp 0.6s ease-out forwards;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #FF0050, #00F2EA, #FF0050);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGradient 3s linear infinite;
}

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

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(255, 0, 80, 0.15),
        0 4px 12px rgba(0, 242, 234, 0.15);
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7A1F37 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

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

.social-media-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.social-media-buttons.reveal {
    animation: revealUp 0.6s ease-out forwards;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.social-btn:hover::before {
    left: 100%;
}

.social-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-tiktok {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.btn-tiktok:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    color: white;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
}

.btn-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
    color: white;
}

.btn-facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.tiktok-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.tiktok-feature {
    background: linear-gradient(145deg, #FFFFFF 0%, #FAF9F7 100%);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(122, 31, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.tiktok-feature.reveal {
    animation: revealUp 0.6s ease-out forwards;
}

.tiktok-feature:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(122, 31, 55, 0.12),
        0 4px 12px rgba(212, 175, 55, 0.1);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.tiktok-feature h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.tiktok-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Why Us Section */
.why-us {
    background: var(--bg-white);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.2) 20%,
        rgba(212, 175, 55, 0.4) 50%,
        rgba(212, 175, 55, 0.2) 80%,
        transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FAF8F5 100%);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 
        0 4px 20px rgba(122, 31, 55, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-card.reveal {
    animation: revealUp 0.6s ease-out forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(122, 31, 55, 0.12),
        0 4px 12px rgba(212, 175, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(212, 175, 55, 0.25);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Collections Section */
.collections {
    background: linear-gradient(to bottom, #FAF8F5 0%, #F5F1E8 100%);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.collections::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.2) 20%,
        rgba(212, 175, 55, 0.4) 50%,
        rgba(212, 175, 55, 0.2) 80%,
        transparent 100%);
}

.collections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(122, 31, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.collection-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FDFCFB 100%);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(122, 31, 55, 0.08),
        0 2px 8px rgba(122, 31, 55, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.lux-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #D4AF37 0%, #F0D678 100%);
    color: #7A1F37;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 
        0 4px 12px rgba(212, 175, 55, 0.4),
        0 2px 4px rgba(122, 31, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    z-index: 3;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.collection-card:hover .lux-badge {
    transform: scale(1.05);
    box-shadow: 
        0 6px 16px rgba(212, 175, 55, 0.5),
        0 3px 6px rgba(122, 31, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7A1F37 0%, #D4AF37 50%, #7A1F37 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.collection-card:hover::before {
    opacity: 1;
    animation: shimmerLine 2s ease infinite;
}

@keyframes shimmerLine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.collection-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 60px rgba(122, 31, 55, 0.15),
        0 8px 24px rgba(212, 175, 55, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(212, 175, 55, 0.3);
}

.collection-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #F8F5F0 0%,
        #F5EDE0 25%,
        #E8DCC8 50%,
        #D4AF37 75%,
        #C9A52E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    filter: brightness(1) saturate(1);
}

.collection-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(122, 31, 55, 0.05) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-card:hover .collection-image::before {
    opacity: 1;
}

.collection-card:hover .collection-image::after {
    opacity: 1;
}

.collection-card:hover .collection-image img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}

@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes textureMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.collection-content {
    padding: 28px;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FAF9F7 100%);
    text-align: center;
}

.collection-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
    font-weight: 400;
}

.collection-card:hover .collection-content p {
    color: #555;
}

/* Capture & Create Section */
.capture-create {
    background: linear-gradient(to bottom, #FFFFFF 0%, #FAF8F5 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.capture-create::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(122, 31, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}


.capture-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
}

.capture-content.reveal {
    animation: revealUp 0.6s ease-out forwards;
}

.capture-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 500;
}

.capture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.capture-step {
    background: linear-gradient(145deg, #FFFFFF 0%, #FAF9F7 100%);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(122, 31, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.capture-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7A1F37, #D4AF37);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.capture-step:hover::before {
    opacity: 1;
}

.capture-step:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(122, 31, 55, 0.15),
        0 4px 12px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

.capture-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.capture-step h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.capture-step p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.capture-cta {
    font-size: 1.1rem;
    padding: 16px 40px;
    margin-top: 20px;
    display: inline-block;
}

/* About Section */
.about {
    background: var(--bg-white);
    border-top: 1px solid rgba(122, 31, 55, 0.08);
    border-bottom: 1px solid rgba(122, 31, 55, 0.08);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.about-content.reveal {
    animation: revealUp 0.6s ease-out forwards;
}

.about-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 30%,
        rgba(212, 175, 55, 0.5) 50%,
        rgba(212, 175, 55, 0.3) 70%,
        transparent 100%);
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.reveal {
    animation: revealUp 0.6s ease-out forwards;
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--primary);
    font-weight: 600;
}

/* Visit Us Section */
.visit-us {
    background: var(--bg-white);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.visit-content.reveal {
    animation: revealUp 0.6s ease-out forwards;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.visit-item h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.visit-item p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.visit-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.visit-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
    border-top: 1px solid rgba(122, 31, 55, 0.1);
    border-bottom: 1px solid rgba(122, 31, 55, 0.1);
}

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

.contact-grid.reveal {
    animation: revealUp 0.6s ease-out forwards;
}

.contact-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
    display: block;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-hover);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-link {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #F0D678 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 20px rgba(212, 175, 55, 0.4),
        0 2px 8px rgba(122, 31, 55, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulseGold 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 
        0 6px 30px rgba(212, 175, 55, 0.6),
        0 3px 12px rgba(122, 31, 55, 0.3);
    background: linear-gradient(135deg, #F0D678 0%, #D4AF37 100%);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    fill: #7A1F37 !important;
    color: #7A1F37;
}

.floating-whatsapp svg path {
    fill: #7A1F37 !important;
    stroke: none;
}

@keyframes pulseGold {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(212, 175, 55, 0.4),
            0 2px 8px rgba(122, 31, 55, 0.2);
    }
    50% {
        box-shadow: 
            0 4px 30px rgba(212, 175, 55, 0.7),
            0 3px 12px rgba(122, 31, 55, 0.3);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }

    .visit-content {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 767px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

    .hero-cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

