/* Reset și setări generale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.logo-wrapper:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff, #fdf2f8);
    border-radius: 18px;
    box-shadow: 0 4px 25px rgba(255, 107, 157, 0.15);
    border: 2px solid rgba(255, 107, 157, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
    position: relative;
}

.logo-wrapper:hover .logo-icon {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #fff5f8, #fdf2f8);
}

.logo-svg {
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    overflow: visible;
}

/* Magic effects on hover */
.logo-wrapper:hover .logo-svg .magic-sparkles {
    animation-play-state: running;
}

.logo-svg .magic-sparkles {
    animation-play-state: paused;
}

.logo-wrapper:hover .logo-svg .main-heart {
    filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.6));
}

.logo-wrapper:hover .logo-svg .magic-wand {
    animation: wandGlow 1.5s ease-in-out infinite;
}

.logo-wrapper:hover .logo-svg .magic-trail circle {
    animation-play-state: running;
}

.logo-svg .magic-trail circle {
    animation-play-state: paused;
}

@keyframes wandGlow {
    0%, 100% { filter: drop-shadow(0 0 3px rgba(108, 92, 231, 0.4)); }
    50% { filter: drop-shadow(0 0 8px rgba(108, 92, 231, 0.8)); }
}

/* Magical glow effect on hover */
.logo-wrapper:hover .logo-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff6b9d, #ffd700, #ff9ff3, #54a0ff, #ff6b9d);
    border-radius: 22px;
    z-index: -1;
    animation: magicGlow 4s linear infinite;
    opacity: 0.4;
    filter: blur(1px);
}

@keyframes magicGlow {
    0% { transform: rotate(0deg) scale(1); opacity: 0.4; }
    50% { transform: rotate(180deg) scale(1.05); opacity: 0.6; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.4; }
}

/* Add magical particles around logo */
.logo-wrapper:hover .logo-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.3) 1px, transparent 1px),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.3) 1px, transparent 1px),
                radial-gradient(circle at 60% 20%, rgba(84, 160, 255, 0.3) 1px, transparent 1px),
                radial-gradient(circle at 20% 80%, rgba(255, 159, 243, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: floatingParticles 6s linear infinite;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-wrapper:hover .logo-icon::after {
    opacity: 1;
}

@keyframes floatingParticles {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.1); }
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.4px;
    background: linear-gradient(135deg, #1e293b, #ff6b9d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    position: relative;
}

.logo-wrapper:hover .logo-text h1 {
    background: linear-gradient(135deg, #ff6b9d, #ffd700, #ff9ff3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
    transform: translateY(-1px);
}

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    display: block;
    margin-top: 4px;
    letter-spacing: 0.3px;
    font-style: italic;
    transition: all 0.3s ease;
    position: relative;
}

.logo-wrapper:hover .logo-tagline {
    color: #ff6b9d;
    transform: translateY(-1px);
    text-shadow: 0 0 10px rgba(255, 107, 157, 0.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5aa0;
}

.cta-nav {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

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

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef, #f1f3f4);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

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

.element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: float 8s ease-in-out infinite;
}

.element1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.element4 {
    top: 40%;
    right: 30%;
    animation-delay: 6s;
}

.element5 {
    bottom: 20%;
    right: 10%;
    animation-delay: 8s;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    color: #333;
    border: 1px solid rgba(44, 90, 160, 0.2);
    backdrop-filter: blur(10px);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0 2rem 0;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid #2c5aa0;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-3px);
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    color: #666;
    font-size: 0.95rem;
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Gallery */
.gallery {
    padding: 5rem 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    justify-items: center;
}

.invitation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 90, 160, 0.1);
    position: relative;
}

.invitation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-preview {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.card-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    transform: scale(1);
    transform-origin: center center;
    background: white;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.invitation-card:hover .preview-overlay {
    opacity: 1;
}

.btn-demo {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    transform: scale(1.05);
}

.card-info {
    padding: 2rem;
}

.card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.card-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.card-price {
    margin-top: 1rem;
    text-align: center;
    position: relative;
}

.price-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.price-original {
    font-size: 1.1rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.price-current {
    font-size: 1.5rem;
    color: #e11d48;
    font-weight: 700;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e11d48, #f43f5e);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
    animation: pulse 2s infinite;
    z-index: 10;
}

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

/* Benefits */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #2c5aa0;
    transform: scale(1.05);
}

.popular-badge {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #666;
    font-size: 0.95rem;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features .feature {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-weight: 400;
}

.pricing-features .feature:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 15px;
    border-left: 4px solid #2c5aa0;
}

.pricing-note p {
    color: #666;
    font-size: 1.1rem;
}

/* Process */
.process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f3f4, #e8eaf6);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
    cursor: default;
}

.step-number:hover {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3) !important;
    color: white !important;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: #fff;
}

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

.testimonial {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: #2c5aa0;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.method-info a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.method-info a:hover {
    text-decoration: underline;
}

.method-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.payment-info h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-methods span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.contact-visual {
    text-align: center;
    position: relative;
}

.floating-icons {
    position: relative;
    margin-bottom: 2rem;
    height: 200px;
}

.icon {
    position: absolute;
    font-size: 2rem;
    animation: iconFloat 6s ease-in-out infinite;
}

.icon1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon2 {
    top: 10%;
    right: 20%;
    animation-delay: 1s;
}

.icon3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.icon4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.icon5 {
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

.icon6 {
    top: 40%;
    right: 40%;
    animation-delay: 5s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

.contact-visual h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-visual p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-call {
    background: white;
    color: #2c5aa0;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-svg {
    width: 38px;
    height: 38px;
    color: #ff6b9d;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-svg {
    color: #ffd700;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.4));
}

.footer-brand h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: #4a90e2;
}

.footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.social-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    color: #4a90e2;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.6;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Demo Modal */
.demo-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: 2% auto;
    width: 95%;
    height: 95%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(44, 90, 160, 0.8);
    transform: scale(1.1);
}

#demo-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid,
    .pricing-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .floating-icons {
        height: 150px;
    }
    
    .icon {
        font-size: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    /* Afișează overlay-ul permanent pe mobil */
    .preview-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .btn-demo {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .card-info {
        padding: 1.5rem;
    }
    
    .benefit-card,
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 98%;
        height: 90%;
    }
}

/* Animații adiționale */
.invitation-card {
    animation: slideInUp 0.6s ease-out;
}

.benefit-card {
    animation: slideInUp 0.6s ease-out;
}

.testimonial {
    animation: slideInUp 0.6s ease-out;
}

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

/* Hover effects pentru gallery */
.invitation-card:hover .card-preview iframe {
    transform: scale(0.85);
}

/* Loading animation pentru iframe-uri */
.iframe-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.iframe-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2c5aa0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Unique Social Proof Section */
.unique-social-proof {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), rgba(44, 90, 160, 0.15));
    border-radius: 20px;
    border: 1px solid rgba(44, 90, 160, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
}

.live-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5aa0;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 4px rgba(44, 90, 160, 0.3);
}

.stat-highlight {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e67e22;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.separator {
    color: #2c5aa0;
    font-size: 1.5rem;
    opacity: 0.6;
}

.pulse {
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.recent-activity {
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(44, 90, 160, 0.2);
}

.activity-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(46, 204, 113, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(46, 204, 113, 0.3);
    font-size: 0.85rem;
    color: #27ae60;
    font-weight: 500;
    animation: slideInFade 2s ease-out;
}

.green-dot {
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.6);
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

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

/* NEW HERO SECTION */
.hero-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e1ecf7 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    z-index: 10;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #2c5aa0, #3b82f6);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, #2c5aa0, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.accent-text {
    color: #ff6b9d;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
    border-color: rgba(44, 90, 160, 0.2);
}

.highlight-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c5aa0, #3b82f6);
    border-radius: 12px;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-text strong {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.05rem;
}

.highlight-text span {
    color: #64748b;
    font-size: 0.9rem;
}

.hero-cta-new {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-primary-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2c5aa0, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.4);
}

.btn-primary-new::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;
}

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

.btn-arrow {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-primary-new:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary-new {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c5aa0;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(44, 90, 160, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-new:hover {
    background: white;
    border-color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
}

.hero-trust {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.trust-stats {
    display: flex;
    gap: 32px;
    padding: 24px 0;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.trust-stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c5aa0;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.trust-stat span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* CAROUSEL STYLES */
.hero-right {
    position: relative;
    z-index: 10;
}

.carousel-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.slide-preview {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.slide-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(1);
    transform-origin: top left;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Special handling for iframe previews in carousel */
.carousel-slide iframe {
    filter: brightness(1.1) contrast(1.1);
}

/* Auto-show invitation content in iframe preview */
.carousel-slide iframe[src*="nunta_moderna_minimalist"] {
    background: linear-gradient(135deg, #f8fafc 0%, #e1ecf7 100%);
}

.slide-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
    z-index: 10;
}

.slide-info {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slide-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.slide-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.slide-price {
    align-self: flex-start;
    background: linear-gradient(135deg, #2c5aa0, #3b82f6);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 8px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -20px;
    pointer-events: none;
    z-index: 20;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    fill: #2c5aa0;
}

.carousel-btn.prev {
    transform: translateX(-22px);
}

.carousel-btn.next {
    transform: translateX(22px);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(44, 90, 160, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2c5aa0;
    transform: scale(1.5);
}

/* BACKGROUND ELEMENTS */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), rgba(59, 130, 246, 0.05));
    animation: floatCircle 8s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: -10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes floatCircle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

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

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
        padding: 0 30px;
    }
    
    .hero-title-new {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-new {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: none;
    }
    
    .hero-cta-new {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-stats {
        justify-content: center;
        gap: 24px;
    }
    
    .carousel-container {
        max-width: 380px;
    }
    
    .slide-preview {
        height: 240px;
    }
    
    .slide-preview iframe {
        width: 100%;
        height: 100%;
        transform: scale(1);
        transform-origin: top left;
        top: 0;
        left: 0;
        pointer-events: none;
    }
}