/* ===== Name Badges Factory - style.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --red: #D72638;
  --red-light: #FF4D5E;
  --red-dark: #A81D2B;
  --red-gradient: linear-gradient(135deg, #D72638 0%, #FF4D5E 50%, #D72638 100%);
  --dark-bg: #ffffff;
  --dark-section: #F5F5F8;
  --dark-card: #ffffff;
  --dark-border: #E2E2EA;
  --silver: #6B7280;
  --text-light: #1A1A2E;
  --text-muted: #5A5A72;
  --white: #ffffff;
  --success: #2ecc71;
  --error: #e74c3c;
  --shadow-gold: 0 4px 30px rgba(215,38,56,0.12);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

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

/* ===== HEADER ===== */
.header {
  position: fixed; top:0; left:0; width:100%; z-index:1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(215,38,56,0.08);
  transition: var(--transition);
}
.header.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 30px rgba(0,0,0,0.08); }
.header .container { display:flex; align-items:center; justify-content:space-between; height:75px; }
.logo { display:flex; align-items:center; gap:12px; }
.logo-icon {
  width:44px; height:44px; background: var(--red-gradient);
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  font-size:20px; font-weight:900; color:#fff;
}
.logo-img {
  width:44px; height:44px; border-radius:8px; object-fit:contain;
}
.logo-text { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:#1A1A2E; }
.logo-text span { color:var(--red); }

.nav-links { display:flex; gap:28px; align-items:center; }
.nav-links a {
  font-size:0.9rem; font-weight:500; color:var(--text-muted);
  transition: var(--transition); position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:2px; background:var(--red);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color:var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }

.nav-cta {
  background: var(--red-gradient); color:#fff !important;
  padding:10px 24px; border-radius:50px; font-weight:600 !important;
  transition: var(--transition);
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { transform:translateY(-2px); box-shadow: var(--shadow-gold); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:5px; }
.hamburger span { width:24px; height:2px; background:var(--red); transition:var(--transition); border-radius:2px; }

/* ===== HERO ===== */
.hero {
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden; padding:100px 20px 60px;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background: url('images/hero-badges.png') center/cover no-repeat;
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(26,26,46,0.88) 0%, rgba(26,26,46,0.7) 50%, rgba(26,26,46,0.88) 100%);
}
.hero-particles {
  position:absolute; inset:0; z-index:1;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(215,38,56,0.3), transparent),
    radial-gradient(2px 2px at 80% 20%, rgba(255,77,94,0.2), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(215,38,56,0.15), transparent),
    radial-gradient(2px 2px at 60% 50%, rgba(255,77,94,0.2), transparent);
  animation: particleFloat 8s ease-in-out infinite;
}
@keyframes particleFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

.hero-content { position:relative; z-index:2; text-align:center; max-width:850px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(215,38,56,0.15); border:1px solid rgba(215,38,56,0.35);
  padding:8px 20px; border-radius:50px; font-size:0.85rem; color:#FF4D5E;
  margin-bottom:24px; animation:fadeInDown 0.8s ease;
}
.hero-badge i { font-size:0.7rem; }
.hero h1 {
  font-family:'Playfair Display',serif; font-size:clamp(2.2rem,5vw,4rem);
  font-weight:900; line-height:1.15; margin-bottom:20px; color:#fff;
  animation:fadeInUp 0.8s ease 0.2s both;
}
.highlight {
  background: var(--red-gradient);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero p {
  font-size:clamp(1rem,2vw,1.2rem); color:rgba(255,255,255,0.7);
  max-width:640px; margin:0 auto 36px; animation:fadeInUp 0.8s ease 0.4s both;
}
.hero-btns {
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  animation:fadeInUp 0.8s ease 0.6s both;
}
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--red-gradient); color:#fff;
  padding:14px 36px; border-radius:50px; font-weight:700;
  font-size:1rem; border:none; cursor:pointer;
  transition:var(--transition);
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:var(--shadow-gold); }
.btn-secondary {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:#fff;
  padding:14px 36px; border-radius:50px; font-weight:600;
  font-size:1rem; border:2px solid rgba(255,255,255,0.4); cursor:pointer;
  transition:var(--transition);
}
.btn-secondary:hover { background:rgba(255,255,255,0.1); transform:translateY(-3px); border-color:#fff; }

.hero-stats {
  display:flex; justify-content:center; gap:48px; margin-top:60px;
  animation:fadeInUp 0.8s ease 0.8s both;
}
.stat-item { text-align:center; }
.stat-number {
  font-family:'Playfair Display',serif; font-size:2.2rem;
  font-weight:800; color:#FF4D5E; display:block;
}
.stat-label { font-size:0.85rem; color:rgba(255,255,255,0.6); margin-top:4px; }

/* ===== SECTION COMMON ===== */
.section { padding:100px 0; }
.section-alt { background:var(--dark-section); }
.section-header { text-align:center; margin-bottom:60px; }
.section-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(215,38,56,0.08); border:1px solid rgba(215,38,56,0.15);
  padding:6px 18px; border-radius:50px; font-size:0.8rem;
  color:var(--red); text-transform:uppercase; letter-spacing:2px;
  font-weight:600; margin-bottom:16px;
}
.section-header h2 {
  font-family:'Playfair Display',serif; font-size:clamp(1.8rem,4vw,2.8rem);
  font-weight:800; margin-bottom:16px; color:#1A1A2E;
}
.section-header h2 span { color:var(--red); }
.section-header p { color:var(--text-muted); max-width:600px; margin:0 auto; font-size:1.05rem; }

/* ===== ABOUT ===== */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-image { position:relative; border-radius:var(--radius); overflow:hidden; }
.about-image img { width:100%; border-radius:var(--radius); }
.about-image-badge {
  position:absolute; bottom:20px; left:20px;
  background:rgba(255,255,255,0.95); backdrop-filter:blur(10px);
  padding:16px 24px; border-radius:var(--radius);
  border:1px solid rgba(215,38,56,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.about-image-badge .number { font-size:1.8rem; font-weight:800; color:var(--red); }
.about-image-badge .label { font-size:0.8rem; color:var(--text-muted); }
.about-text h3 { font-size:1.3rem; color:var(--red); margin-bottom:12px; font-weight:600; }
.about-text p { color:var(--text-muted); margin-bottom:20px; }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:28px; }
.about-feature {
  display:flex; align-items:center; gap:10px;
  padding:12px 16px; background:var(--dark-section);
  border-radius:8px; border:1px solid var(--dark-border);
}
.about-feature i { color:var(--red); font-size:1.1rem; }
.about-feature span { font-size:0.9rem; font-weight:500; }

/* ===== PRODUCTS ===== */
.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.product-card {
  background:var(--dark-card); border:1px solid var(--dark-border);
  border-radius:var(--radius); overflow:hidden;
  transition:var(--transition); position:relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.product-card:hover { transform:translateY(-8px); border-color:rgba(215,38,56,0.3); box-shadow:var(--shadow-gold); }
.product-card-icon {
  width:100%; height:180px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, #F5F5F8 0%, #EEEEF2 100%);
  font-size:3.5rem; color:var(--red);
}
.product-card-body { padding:24px; }
.product-card-body h3 { font-size:1.15rem; font-weight:700; margin-bottom:8px; color:#1A1A2E; }
.product-card-body p { font-size:0.9rem; color:var(--text-muted); line-height:1.6; }
.product-tag {
  position:absolute; top:16px; right:16px;
  background:rgba(215,38,56,0.1); color:var(--red);
  padding:4px 12px; border-radius:50px; font-size:0.75rem; font-weight:600;
}

/* ===== INDUSTRIES ===== */
.industries-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; }
.industry-card {
  text-align:center; padding:36px 20px;
  background:var(--dark-card); border:1px solid var(--dark-border);
  border-radius:var(--radius); transition:var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.industry-card:hover { border-color:var(--red); transform:translateY(-5px); box-shadow:var(--shadow-gold); }
.industry-card i { font-size:2.4rem; color:var(--red); margin-bottom:16px; display:block; }
.industry-card h3 { font-size:1rem; font-weight:600; margin-bottom:6px; color:#1A1A2E; }
.industry-card p { font-size:0.82rem; color:var(--text-muted); }

/* ===== WHY CHOOSE US ===== */
.why-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.why-card {
  display:flex; gap:20px; padding:32px;
  background:var(--dark-card); border:1px solid var(--dark-border);
  border-radius:var(--radius); transition:var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.why-card:hover { border-color:rgba(215,38,56,0.3); box-shadow:var(--shadow-gold); }
.why-card-icon {
  width:56px; height:56px; min-width:56px;
  background:rgba(215,38,56,0.08); border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; color:var(--red);
}
.why-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:8px; color:#1A1A2E; }
.why-card p { font-size:0.9rem; color:var(--text-muted); }

/* ===== GALLERY ===== */
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.gallery-item {
  border-radius:var(--radius); overflow:hidden; position:relative;
  aspect-ratio:4/3; cursor:pointer;
}
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:var(--transition); }
.gallery-item:hover img { transform:scale(1.08); }
.gallery-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(26,26,46,0.8) 0%, transparent 60%);
  display:flex; align-items:flex-end; padding:20px;
  opacity:0; transition:var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay span { font-weight:600; font-size:0.95rem; color:#fff; }

/* ===== CTA ===== */
.cta-section {
  padding:80px 0; text-align:center;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B30 50%, #1A1A2E 100%);
  color:#fff;
}
.cta-section h2 {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.6rem,3.5vw,2.4rem); font-weight:800; margin-bottom:16px; color:#fff;
}
.cta-section p { color:rgba(255,255,255,0.7); margin-bottom:32px; font-size:1.05rem; }
.cta-section .btn-secondary { color:#fff; border-color:rgba(255,255,255,0.4); }
.cta-section .btn-secondary:hover { border-color:#fff; }

/* ===== CONTACT ===== */
.contact-wrapper { display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.contact-info { display:flex; flex-direction:column; gap:24px; }
.contact-item { display:flex; gap:16px; align-items:flex-start; }
.contact-icon {
  width:48px; height:48px; min-width:48px;
  background:rgba(215,38,56,0.08); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  color:var(--red); font-size:1.1rem;
}
.contact-item h4 { font-size:0.95rem; font-weight:600; margin-bottom:4px; color:#1A1A2E; }
.contact-item p, .contact-item a { font-size:0.9rem; color:var(--text-muted); }
.contact-item a:hover { color:var(--red); }

.contact-form {
  background:var(--dark-section); border:1px solid var(--dark-border);
  border-radius:var(--radius); padding:36px;
}
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:0.9rem; font-weight:500; margin-bottom:8px; color:var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  width:100%; padding:14px 18px;
  background:#fff; border:1px solid var(--dark-border);
  border-radius:8px; color:var(--text-light);
  font-family:'Inter',sans-serif; font-size:0.95rem;
  transition:var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline:none; border-color:var(--red);
  box-shadow:0 0 0 3px rgba(215,38,56,0.08);
}
.form-group textarea { height:120px; resize:vertical; }
.captcha-row {
  display:flex; align-items:center; gap:12px; margin-bottom:20px;
  background:#fff; padding:14px 18px; border-radius:8px;
  border:1px solid var(--dark-border);
}
.captcha-question { color:var(--red); font-weight:600; white-space:nowrap; }
.captcha-row input {
  flex:1; padding:8px 12px; background:transparent;
  border:1px solid var(--dark-border); border-radius:6px;
  color:var(--text-light); font-size:0.95rem;
}
.captcha-row input:focus { outline:none; border-color:var(--red); }
.btn-submit {
  width:100%; padding:16px; background:var(--red-gradient);
  color:#fff; border:none; border-radius:8px;
  font-size:1rem; font-weight:700; cursor:pointer;
  transition:var(--transition); font-family:'Inter',sans-serif;
}
.btn-submit:hover { transform:translateY(-2px); box-shadow:var(--shadow-gold); }
.btn-submit:disabled { opacity:0.6; cursor:not-allowed; transform:none; }
.form-status {
  margin-top:16px; padding:12px 16px; border-radius:8px;
  font-size:0.9rem; display:none;
}
.form-status.success { display:block; background:rgba(46,204,113,0.1); color:var(--success); border:1px solid rgba(46,204,113,0.3); }
.form-status.error { display:block; background:rgba(231,76,60,0.1); color:var(--error); border:1px solid rgba(231,76,60,0.3); }

/* ===== MAP ===== */
.map-section { padding:0; }
.map-container { width:100%; height:400px; }
.map-container iframe { width:100%; height:100%; border:0; }

/* ===== FOOTER ===== */
.footer {
  background:#1A1A2E; color:#fff;
  padding:60px 0 0;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-about .logo { margin-bottom:16px; }
.footer-about .logo-text { color:#fff; }
.footer-about p { color:rgba(255,255,255,0.6); font-size:0.9rem; margin-bottom:20px; }
.footer-social { display:flex; gap:12px; }
.footer-social a {
  width:40px; height:40px; background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.6); transition:var(--transition);
}
.footer-social a:hover { border-color:var(--red); color:var(--red); background:rgba(215,38,56,0.1); }
.footer-col h4 { font-size:1rem; font-weight:700; margin-bottom:20px; color:var(--red-light); }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul a { font-size:0.9rem; color:rgba(255,255,255,0.6); transition:var(--transition); }
.footer-col ul a:hover { color:var(--red-light); padding-left:4px; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.1);
  padding:20px 0; text-align:center;
  font-size:0.85rem; color:rgba(255,255,255,0.5);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:60px; height:60px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem; color:#fff; box-shadow:0 4px 20px rgba(37,211,102,0.4);
  transition:var(--transition); animation:whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform:scale(1.1); box-shadow:0 6px 30px rgba(37,211,102,0.5); }
@keyframes whatsappPulse {
  0%{box-shadow:0 0 0 0 rgba(37,211,102,0.4)} 70%{box-shadow:0 0 0 15px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal.active { opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
  .nav-links { display:none; position:fixed; top:75px; left:0; width:100%; background:rgba(255,255,255,0.98); flex-direction:column; padding:30px; gap:20px; border-bottom:1px solid var(--dark-border); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
  .nav-links.active { display:flex; }
  .hamburger { display:flex; }
  .about-grid, .contact-wrapper { grid-template-columns:1fr; }
  .products-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .hero-stats { gap:28px; }
}
@media(max-width:768px) {
  .products-grid, .gallery-grid { grid-template-columns:1fr 1fr; }
  .hero-stats { flex-direction:column; gap:20px; }
  .about-features { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .hero { padding:100px 16px 40px; }
}
@media(max-width:480px) {
  .products-grid, .gallery-grid { grid-template-columns:1fr; }
  .hero-btns { flex-direction:column; align-items:center; }
  .industries-grid { grid-template-columns:1fr 1fr; }
}
