/* ============================================
   GHRIVE WEB - Main Stylesheet
   Páginas Web Personalizadas para San Valentín
   ============================================ */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales - Paleta romántica */
    --color-primary: #d4a574;
    --color-primary-dark: #b8860b;
    --color-secondary: #f5e6d3;
    --color-accent: #e8c4a0;
    --color-rose: #f4c2c2;
    --color-gold: #d4af37;
    --color-beige: #f5f5dc;
    --color-white: #ffffff;
    --color-text: #5a4a3a;
    --color-text-light: #8b6f47;
    --color-text-dark: #3d2f1f;
    
    /* Tipografías */
    --font-display: 'Dancing Script', cursive;
    --font-body: 'Caveat', cursive;
    --font-elegant: 'Playfair Display', serif;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transiciones */
    --transition-smooth: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f5 25%, #ffeef8 50%, #fff5f5 75%, #ffeef8 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: default;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 192, 203, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Corazones flotantes decorativos con SVG */
.floating-hearts-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-heart-bg {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.2;
    animation: floatHeartBg 15s ease-in-out infinite;
    color: #e91e63;
}

.floating-heart-bg svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.floating-heart-bg:nth-child(1) { left: 10%; animation-delay: 0s; width: 25px; height: 25px; }
.floating-heart-bg:nth-child(2) { left: 20%; animation-delay: 2s; width: 35px; height: 35px; }
.floating-heart-bg:nth-child(3) { left: 30%; animation-delay: 4s; width: 28px; height: 28px; }
.floating-heart-bg:nth-child(4) { left: 50%; animation-delay: 6s; width: 32px; height: 32px; }
.floating-heart-bg:nth-child(5) { left: 70%; animation-delay: 8s; width: 26px; height: 26px; }
.floating-heart-bg:nth-child(6) { left: 80%; animation-delay: 10s; width: 30px; height: 30px; }
.floating-heart-bg:nth-child(7) { left: 15%; animation-delay: 12s; width: 34px; height: 34px; }
.floating-heart-bg:nth-child(8) { left: 60%; animation-delay: 14s; width: 22px; height: 22px; }

@keyframes floatHeartBg {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Trail de corazones con SVG */
.heart-trail {
    position: fixed;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 9999;
    animation: heartTrailFade 1s ease-out forwards;
    color: #e91e63;
}

.heart-trail svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@keyframes heartTrailFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(180deg);
    }
}

/* Explosión de corazones con SVG */
.heart-explosion {
    position: fixed;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 10000;
    animation: heartExplode 1.5s ease-out forwards;
    color: #e91e63;
}

.heart-explosion svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@keyframes heartExplode {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(1.5) rotate(720deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(233, 30, 99, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 2px solid rgba(233, 30, 99, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #e91e63;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.logo-link i {
    font-size: 1.8rem;
    animation: heartBeat 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(233, 30, 99, 0.3));
}

.logo-link:hover {
    transform: scale(1.05);
    color: #c2185b;
}

.logo-text {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav {
    display: flex;
    align-items: center;
    position: static;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
    flex-direction: row;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    border-radius: 25px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #e91e63, #ff69b4, #e91e63);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #e91e63;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.menu-toggle {
    display: none;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    border: none;
    color: var(--color-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-icon {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle.active .menu-icon i::before {
    content: '\f00d';
}

/* Overlay para menú móvil */
.menu-overlay {
    display: none;
}

@media (max-width: 768px) {
    .menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Header responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 245, 0.98) 100%);
        box-shadow: -5px 0 30px rgba(233, 30, 99, 0.2);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: var(--spacing-xl) var(--spacing-md);
        border-left: 2px solid rgba(233, 30, 99, 0.2);
        display: flex;
        flex-direction: column;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
        margin-top: 4rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        text-align: left;
        border-radius: 15px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 245, 245, 0.5) 100%);
        border: 1px solid rgba(233, 30, 99, 0.1);
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover {
        background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
        color: var(--color-white);
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    }

    .header-container {
        padding: 0.8rem var(--spacing-sm);
    }

    .logo-link {
        font-size: 1.5rem;
    }

    .logo-link i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-nav {
        width: 100%;
        right: -100%;
    }

    .logo-link {
        font-size: 1.3rem;
    }

    .logo-link i {
        font-size: 1.3rem;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .menu-icon {
        font-size: 1.1rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 238, 248, 0.8) 0%, rgba(255, 245, 245, 0.8) 50%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    padding: calc(var(--spacing-xl) + 80px) var(--spacing-md) var(--spacing-xl);
    overflow: hidden;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 194, 194, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-decoration {
    margin-bottom: var(--spacing-md);
}

.heart-icon {
    width: 80px;
    height: 80px;
    color: #e91e63;
    display: inline-block;
    animation: float 3s ease-in-out infinite, heartBeat 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(233, 30, 99, 0.4));
    transition: all 0.3s ease;
}

.heart-icon path {
    fill: #e91e63;
    stroke: #c2185b;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.15);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(1.15);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #e91e63;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 8px rgba(233, 30, 99, 0.3), 0 0 20px rgba(255, 192, 203, 0.5);
    line-height: 1.2;
    position: relative;
    z-index: 3;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #c2185b;
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    position: relative;
    z-index: 3;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #e91e63;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    z-index: 2;
    cursor: pointer;
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    animation: bounceArrow 2s ease-in-out infinite;
    color: #e91e63;
    display: block;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Decoraciones de flechas y corazones */
/* Decoraciones de flechas y corazones */
.section-decoration {
    text-align: center;
    margin: var(--spacing-lg) 0 var(--spacing-md);
    opacity: 0.6;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-decoration::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e91e63'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(233, 30, 99, 0.3));
}

.section-decoration::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e91e63'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(233, 30, 99, 0.3));
}

.section-decoration i {
    font-size: 1.2rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
}


/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    font-weight: 600;
    text-align: center;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4), 0 0 30px rgba(255, 192, 203, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.6), 0 0 40px rgba(255, 192, 203, 0.4);
    background: linear-gradient(135deg, #f06292 0%, #e91e63 100%);
}

.btn-secondary {
    background: var(--color-white);
    color: #e91e63;
    border: 2px solid #e91e63;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    border-color: #e91e63;
}

.btn-outline {
    background: transparent;
    color: #e91e63;
    border: 2px solid #e91e63;
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: var(--color-white);
    border-color: #e91e63;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.3rem;
}

/* ===== SECTIONS ===== */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #e91e63;
    text-align: center;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 6px rgba(233, 30, 99, 0.2);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: linear-gradient(180deg, #ffffff 0%, #fff5f8 100%);
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    padding: 0 var(--spacing-sm);
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
    padding: var(--spacing-lg);
    border-radius: 25px;
    text-align: center;
    transition: var(--transition-bounce);
    border: 2px solid rgba(233, 30, 99, 0.1);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #ff69b4, #e91e63);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #e91e63;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.25), 0 0 30px rgba(255, 192, 203, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #ffeef8 100%);
}

.service-card:hover .service-icon {
    animation: heartBeat 0.6s ease-in-out;
    transform: scale(1.1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    transition: transform 0.3s ease;
    color: #e91e63;
    display: inline-block;
}

.service-icon i {
    filter: drop-shadow(0 2px 8px rgba(233, 30, 99, 0.2));
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #c2185b;
    filter: drop-shadow(0 4px 15px rgba(233, 30, 99, 0.4));
}

.service-title {
    font-family: var(--font-elegant);
    font-size: 1.6rem;
    color: #e91e63;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.service-description {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
}

/* ===== EXAMPLES SECTION ===== */
.examples {
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-secondary) 100%);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.example-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.15);
    transition: var(--transition-bounce);
    border: 2px solid rgba(233, 30, 99, 0.1);
    position: relative;
}

.example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #ff69b4, #e91e63);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.example-card:hover::before {
    transform: scaleX(1);
}

.example-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(233, 30, 99, 0.3), 0 0 30px rgba(255, 192, 203, 0.2);
    border-color: #e91e63;
}

.example-card:hover .preview-heart {
    animation: heartBeat 0.6s ease-in-out;
    transform: scale(1.2);
}

.example-preview {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3) 0%, rgba(255, 192, 203, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.example-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.example-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, rgba(255, 192, 203, 0.2) 100%);
    position: relative;
    z-index: 1;
}

.preview-heart {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 10px rgba(233, 30, 99, 0.3));
    transition: transform 0.3s ease;
    color: #e91e63;
}

.preview-heart i {
    font-size: 4rem;
}

.example-title {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    color: #e91e63;
    margin: var(--spacing-md);
    text-align: center;
    font-weight: 600;
}

.example-description {
    padding: 0 var(--spacing-md);
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.example-card .btn {
    margin: 0 var(--spacing-md) var(--spacing-md);
    width: calc(100% - 2 * var(--spacing-md));
    display: block;
    text-align: center;
}

/* ===== PROCESS SECTION ===== */
.process {
    background: linear-gradient(180deg, #fff5f8 0%, #ffffff 100%);
    position: relative;
    z-index: 2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4), 0 0 30px rgba(255, 192, 203, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.step-number i {
    font-size: 2rem;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5), 0 0 40px rgba(255, 192, 203, 0.4);
}

.step-title {
    font-family: var(--font-elegant);
    font-size: 1.6rem;
    color: #e91e63;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.step-description {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f5 50%, #ffeef8 100%);
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-md);
}

.contact-description {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.contact-note {
    margin-top: var(--spacing-md);
    font-size: 1rem;
    color: var(--color-text-light);
    font-style: italic;
}

.contact-form {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--color-accent);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-text-dark);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-md) 0;
}

.footer-text {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.footer-domain {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--color-primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero {
        min-height: 85vh;
    }
    .hero-title {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .examples-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: calc(var(--spacing-lg) + 70px) var(--spacing-sm) var(--spacing-lg);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-scroll {
        bottom: var(--spacing-sm);
    }
    
    .services-grid,
    .examples-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .service-card,
    .example-card,
    .process-step {
        margin-bottom: var(--spacing-md);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 75vh;
        padding: calc(var(--spacing-md) + 70px) var(--spacing-xs) var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-cta .btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card,
    .example-card {
        padding: var(--spacing-md);
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-title,
    .example-title {
        font-size: 1.3rem;
    }
    
    .service-description,
    .example-description {
        font-size: 1rem;
    }
    
    .process-step {
        margin-bottom: var(--spacing-md);
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-domain {
        font-size: 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

