/* FULUFAITH CRAFTS - COMPLETE STYLES */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #EC4899; --secondary: #BE185D; --accent: #A855F7;
  --dark: #0F172A; --light: #FDF2F8; --white: #FFFFFF;
}

body { font-family: 'Poppins', sans-serif; color: var(--dark); overflow-x: hidden; line-height: 1.6; }

/* NAVIGATION */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.3s; }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 1.25rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 1rem; }
.logo-link { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--dark); font-weight: 700; font-size: 1.25rem; transition: color 0.3s; }
.logo-link:hover { color: var(--primary); }
.logo-icon { font-size: 1.75rem; }
.brand-divider { color: #CBD5E1; font-weight: 300; }
.brand-name { color: var(--primary); font-weight: 700; font-size: 1.1rem; }
.nav-menu { display: flex; gap: 2rem; align-items: center; }
.nav-link { color: var(--dark); text-decoration: none; font-weight: 500; position: relative; transition: all 0.3s; }
.nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: linear-gradient(135deg, var(--primary), var(--secondary)); transition: width 0.3s; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link-special { background: linear-gradient(135deg, #3B82F6, #1D4ED8); color: var(--white); padding: 0.5rem 1.25rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; box-shadow: 0 2px 10px rgba(59,130,246,0.3); }
.nav-link-special:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(59,130,246,0.4); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 25px; height: 3px; background: var(--dark); border-radius: 3px; transition: all 0.3s; }

/* HERO */
.hero-crafts { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 8rem 2rem 4rem; position: relative; overflow: hidden; }
.hero-background { position: absolute; inset: 0; z-index: -1; }
.hero-bg-image { width: 100%; height: 100%; object-fit: cover; object-position: center; position: absolute; inset: 0; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(236,72,153,0.85), rgba(190,24,93,0.85)); z-index: 1; }
.gradient-orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: float 20s ease-in-out infinite; z-index: 2; }
.orb-1 { width: 400px; height: 400px; background: rgba(168,85,247,0.3); top: 10%; left: 10%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: rgba(236,72,153,0.25); top: 60%; right: 15%; animation-delay: 7s; }
.orb-3 { width: 350px; height: 350px; background: rgba(190,24,93,0.25); bottom: 10%; left: 50%; animation-delay: 14s; }
@keyframes float { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(30px, -30px); } 66% { transform: translate(-30px, 30px); } }
.hero-content { max-width: 1200px; text-align: center; z-index: 1; color: var(--white); }
.hero-badge-animated { display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 0.75rem 2rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.3); margin-bottom: 2rem; font-weight: 600; }
.sparkle { animation: sparkle 2s ease-in-out infinite; }
@keyframes sparkle { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.2) rotate(180deg); } }
.hero-title { margin-bottom: 2rem; }
.title-small { display: block; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; opacity: 0.9; margin-bottom: 0.5rem; }
.title-large { display: block; font-family: 'Playfair Display', serif; font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; line-height: 1.1; margin-bottom: 0.75rem; text-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.title-tagline { display: block; font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 400; opacity: 0.95; }
.hero-subtitle { font-size: clamp(1.1rem, 2vw, 1.3rem); opacity: 0.9; max-width: 700px; margin: 0 auto 3rem; line-height: 1.7; }
.hero-cta-group { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.cta-primary { display: inline-flex; align-items: center; gap: 1rem; padding: 1.25rem 3rem; background: var(--white); color: var(--primary); border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem; box-shadow: 0 10px 30px rgba(255,255,255,0.3); transition: all 0.3s; }
.cta-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255,255,255,0.4); }
.cta-secondary { display: inline-flex; align-items: center; gap: 1rem; padding: 1.25rem 3rem; background: rgba(255,255,255,0.15); color: var(--white); border: 2px solid var(--white); border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem; backdrop-filter: blur(10px); transition: all 0.3s; }
.cta-secondary:hover { background: var(--white); color: var(--primary); transform: translateY(-3px); }
.cta-icon { font-size: 1.5rem; transition: transform 0.3s; }
.cta-primary:hover .cta-icon, .cta-secondary:hover .cta-icon { transform: translateX(5px); }
.hero-features-bar { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.feature-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 50px; font-size: 0.9rem; font-weight: 600; }
.badge-icon { color: #FCD34D; font-weight: 900; }
.scroll-down { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); text-align: center; opacity: 0.8; }
.scroll-down span { display: block; margin-bottom: 1rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--white); }
.mouse-icon { width: 30px; height: 50px; border: 2px solid var(--white); border-radius: 25px; margin: 0 auto; position: relative; }
.mouse-wheel { width: 4px; height: 8px; background: var(--white); border-radius: 2px; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); animation: scroll 2s infinite; }
@keyframes scroll { 0% { top: 10px; opacity: 1; } 100% { top: 30px; opacity: 0; } }

/* SECTIONS */
.products-section, .about-section, .contact-section { padding: 8rem 2rem; background: var(--white); }
.process-section, .gallery-section { padding: 8rem 2rem; background: linear-gradient(135deg, #FDF2F8, #FCE7F3); }
.container { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-badge { display: inline-block; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); padding: 0.5rem 1.5rem; border-radius: 50px; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--dark); margin-bottom: 1rem; line-height: 1.2; }
.section-desc { font-size: 1.2rem; color: #64748B; max-width: 700px; margin: 0 auto; }

/* PRODUCTS */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; }
.product-card { background: var(--white); border-radius: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.4s; overflow: hidden; border: 2px solid transparent; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(236,72,153,0.15); border-color: var(--primary); }
.product-image { height: 220px; position: relative; overflow: hidden; }
.image-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary), var(--accent)); opacity: 0.9; }
.product-icon { position: relative; z-index: 1; font-size: 5rem; display: flex; align-items: center; justify-content: center; height: 100%; color: var(--white); }
.product-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.95); color: var(--primary); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; z-index: 2; text-transform: uppercase; }
.product-content { padding: 2.5rem; }
.product-card h3 { font-size: 1.75rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.product-card p { color: #64748B; line-height: 1.7; margin-bottom: 1.5rem; }
.product-features { list-style: none; margin-bottom: 2rem; }
.product-features li { padding: 0.5rem 0; color: #475569; font-size: 0.95rem; }
.product-link { color: var(--primary); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s; }
.product-link:hover { gap: 1rem; }

/* PROCESS TIMELINE */
.process-timeline { max-width: 1000px; margin: 0 auto; position: relative; }
.process-timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: linear-gradient(to bottom, var(--primary), var(--secondary)); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr auto 1fr; gap: 3rem; margin-bottom: 5rem; align-items: center; }
.timeline-item:nth-child(even) .timeline-content:first-child { order: 3; }
.timeline-marker { position: relative; z-index: 2; }
.marker-inner { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900; box-shadow: 0 4px 20px rgba(236,72,153,0.3); border: 5px solid var(--white); }
.timeline-content { background: var(--white); padding: 2.5rem; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s; }
.timeline-content:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(236,72,153,0.15); }
.timeline-icon { font-size: 3rem; margin-bottom: 1rem; }
.timeline-content h3 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.timeline-content p { color: #64748B; line-height: 1.7; }

/* ABOUT */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text .section-title { text-align: left; margin-bottom: 1.5rem; }
.about-desc { font-size: 1.15rem; line-height: 1.8; color: #475569; margin-bottom: 3rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.value-item { display: flex; gap: 1rem; }
.value-icon { font-size: 2.5rem; flex-shrink: 0; }
.value-item h4 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.value-item p { color: #64748B; font-size: 0.95rem; line-height: 1.6; }
.about-cta { display: inline-flex; align-items: center; gap: 1rem; padding: 1.25rem 3rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); text-decoration: none; border-radius: 50px; font-weight: 700; font-size: 1.1rem; transition: all 0.3s; box-shadow: 0 4px 20px rgba(236,72,153,0.3); }
.about-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(236,72,153,0.4); }
.about-showcase { position: relative; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.showcase-item { background: var(--white); padding: 2.5rem; border-radius: 20px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s; position: relative; overflow: hidden; }
.showcase-item:hover { transform: translateY(-5px) rotate(2deg); box-shadow: 0 10px 30px rgba(236,72,153,0.15); }
.item-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary), var(--accent)); opacity: 0.05; z-index: 0; }
.item-icon { position: relative; z-index: 1; font-size: 3.5rem; margin-bottom: 1rem; }
.showcase-item p { position: relative; z-index: 1; font-weight: 600; color: var(--dark); font-size: 1.1rem; }
.showcase-badge { position: absolute; bottom: -20px; right: -20px; background: var(--white); padding: 1.5rem 2rem; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); text-align: center; }
.showcase-badge .badge-number { font-size: 2.5rem; font-weight: 900; color: var(--primary); font-family: 'Playfair Display', serif; display: block; }
.showcase-badge .badge-text { font-size: 0.9rem; color: #64748B; display: block; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.gallery-item { border-radius: 20px; overflow: hidden; position: relative; height: 350px; cursor: pointer; transition: all 0.3s; }
.gallery-item:hover { transform: scale(1.05); }
.gallery-image { height: 100%; background: linear-gradient(135deg, var(--primary), var(--accent)); position: relative; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); opacity: 0; transition: all 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-icon { font-size: 4rem; margin-bottom: 1rem; }
.gallery-overlay p { font-size: 1.25rem; font-weight: 600; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; max-width: 1400px; margin: 0 auto; }
.contact-info-side h2 { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; line-height: 1.2; }
.contact-info-side p { font-size: 1.15rem; color: #64748B; margin-bottom: 3rem; line-height: 1.7; }
.contact-info-list { display: flex; flex-direction: column; gap: 2rem; }
.info-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.info-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #FDF2F8, #FCE7F3); color: var(--primary); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; flex-shrink: 0; }
.info-item h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.info-item p { color: #64748B; line-height: 1.6; margin: 0; }
.info-highlight { background: linear-gradient(135deg, #FDF2F8, #FCE7F3); padding: 2rem; border-radius: 16px; margin-top: 2rem; }
.info-highlight h4 { color: var(--primary); font-size: 1.25rem; margin-bottom: 0.75rem; }
.info-highlight p { color: #64748B; line-height: 1.6; }
.contact-form-side { background: linear-gradient(135deg, #FDF2F8, #FCE7F3); padding: 3.5rem; border-radius: 32px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-weight: 600; color: var(--dark); font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1.25rem; border: 2px solid #FCE7F3; border-radius: 12px; font-family: 'Poppins', sans-serif; font-size: 1rem; background: var(--white); transition: all 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(236,72,153,0.1); }
.submit-button { padding: 1.5rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); border: none; border-radius: 12px; font-size: 1.15rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 1rem; transition: all 0.3s; box-shadow: 0 4px 20px rgba(236,72,153,0.3); }
.submit-button:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(236,72,153,0.4); }
.btn-arrow { font-size: 1.5rem; transition: transform 0.3s; }
.submit-button:hover .btn-arrow { transform: translateX(5px); }
.form-success { text-align: center; padding: 4rem 2rem; }
.success-check { width: 100px; height: 100px; background: linear-gradient(135deg, #10B981, #059669); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 4rem; margin: 0 auto 2rem; animation: scaleIn 0.5s; }
@keyframes scaleIn { from { transform: scale(0); } to { transform: scale(1); } }
.form-success h3 { font-size: 2rem; color: var(--dark); margin-bottom: 1rem; }
.form-success p { color: #64748B; font-size: 1.15rem; }

/* FOOTER */
.footer { background: var(--dark); color: var(--white); padding: 4rem 2rem 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 4rem; margin-bottom: 3rem; max-width: 1400px; margin-left: auto; margin-right: auto; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.footer-brand p { opacity: 0.7; margin-bottom: 2rem; line-height: 1.7; }
.social-links { display: flex; gap: 1rem; }
.social-link { width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.25rem; transition: all 0.3s; }
.social-link:hover { background: linear-gradient(135deg, var(--primary), var(--secondary)); transform: translateY(-3px); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.footer-col h4 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 0.75rem; transition: all 0.3s; }
.footer-col a:hover { color: var(--white); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; max-width: 1400px; margin: 0 auto; }
.footer-bottom p { margin-bottom: 0.5rem; }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; display: flex; align-items: center; gap: 0.5rem; background: #25D366; color: var(--white); padding: 1rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: all 0.3s; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.wa-pulse { width: 10px; height: 10px; background: var(--white); border-radius: 50%; animation: pulsewa 2s infinite; }
@keyframes pulsewa { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0.7; } }
.wa-icon { font-size: 1.5rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .process-timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item:nth-child(even) .timeline-content:first-child { order: 1; }
  .timeline-marker { margin: 0 auto 2rem; }
  .about-values { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background: var(--white); flex-direction: column; padding: 2rem; gap: 1rem; transition: left 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
  .nav-menu.active { left: 0; }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .gallery-grid { grid-template-columns: 1fr; }
  .whatsapp-float { padding: 1rem; border-radius: 50%; width: 60px; height: 60px; justify-content: center; }
  .wa-icon { font-size: 2rem; }
  .wa-pulse { display: none; }
}
