/* ═══ Badges Factory — Fresh Innovative Design ═══ */
/* Color Palette: Deep Navy + Electric Cyan + Vibrant Coral */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a1628;
  --navy-light: #111d33;
  --navy-mid: #162544;
  --cyan: #00d4ff;
  --cyan-glow: rgba(0,212,255,0.15);
  --coral: #ff6b6b;
  --coral-glow: rgba(255,107,107,0.15);
  --amber: #ffb347;
  --white: #ffffff;
  --gray-100: #f0f4f8;
  --gray-200: #d9e2ec;
  --gray-400: #9fb3c8;
  --gray-600: #627d98;
  --gradient-cyan: linear-gradient(135deg, #00d4ff, #0099cc);
  --gradient-coral: linear-gradient(135deg, #ff6b6b, #ee5a24);
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #162544 50%, #1a3a5c 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-cyan: 0 4px 30px rgba(0,212,255,0.25);
  --shadow-coral: 0 4px 30px rgba(255,107,107,0.25);
  --radius: 16px;
  --radius-sm: 10px;
}

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

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

body {
  font-family:'Inter',sans-serif;
  color:#333;
  background:var(--white);
  line-height:1.7;
  overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6 { font-family:'Space Grotesk',sans-serif; line-height:1.2; }

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 24px; }

/* ═══ HEADER / NAVBAR ═══ */
.navbar {
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  background:rgba(10,22,40,0.92);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(0,212,255,0.1);
  transition:all .3s ease;
}
.navbar.scrolled { background:rgba(10,22,40,0.98); box-shadow:0 2px 20px rgba(0,0,0,0.3); }
.navbar .container { display:flex; align-items:center; justify-content:space-between; height:75px; }
.nav-logo { display:flex; align-items:center; gap:12px; }
.nav-logo img { height:50px; width:auto; }
.nav-logo span { font-family:'Space Grotesk',sans-serif; font-size:1.3rem; font-weight:700; color:var(--white); }
.nav-logo span em { font-style:normal; color:var(--cyan); }

.nav-links { display:flex; gap:32px; align-items:center; }
.nav-links a {
  color:var(--gray-200); font-size:.92rem; font-weight:500;
  position:relative; transition:color .3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px;
  background:var(--cyan); transition:width .3s;
}
.nav-links a:hover { color:var(--cyan); }
.nav-links a:hover::after { width:100%; }

.nav-cta {
  background:var(--gradient-coral); color:var(--white);
  padding:10px 24px; border-radius:50px; font-weight:600; font-size:.9rem;
  transition:transform .3s, box-shadow .3s;
}
.nav-cta:hover { transform:translateY(-2px); box-shadow:var(--shadow-coral); }
.nav-cta::after { display:none!important; }

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

/* ═══ HERO SECTION ═══ */
.hero {
  background:var(--gradient-hero);
  min-height:100vh; display:flex; align-items:center;
  position:relative; overflow:hidden; padding-top:75px;
}
.hero::before {
  content:''; position:absolute; top:-50%; right:-20%;
  width:800px; height:800px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  animation:pulse 6s ease-in-out infinite;
}
.hero::after {
  content:''; position:absolute; bottom:-30%; left:-10%;
  width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,107,107,0.06) 0%, transparent 70%);
  animation:pulse 8s ease-in-out infinite reverse;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.1);opacity:1} }

.hero .container { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; position:relative; z-index:2; }

.hero-content { color:var(--white); }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(0,212,255,0.1); border:1px solid rgba(0,212,255,0.3);
  padding:8px 18px; border-radius:50px; font-size:.82rem; color:var(--cyan);
  margin-bottom:24px; font-weight:500;
}
.hero-badge .dot { width:8px; height:8px; background:var(--cyan); border-radius:50%; animation:blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 { font-size:3.2rem; font-weight:700; line-height:1.15; margin-bottom:20px; }
.hero h1 .highlight { color:var(--cyan); }
.hero h1 .highlight-coral { color:var(--coral); }
.hero p { font-size:1.1rem; color:var(--gray-400); margin-bottom:32px; max-width:500px; }

.hero-buttons { display:flex; gap:16px; flex-wrap:wrap; }
.btn-primary {
  background:var(--gradient-cyan); color:var(--navy); padding:14px 32px;
  border-radius:50px; font-weight:700; font-size:1rem;
  transition:transform .3s, box-shadow .3s; display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:var(--shadow-cyan); }
.btn-outline {
  border:2px solid rgba(255,255,255,0.2); color:var(--white); padding:14px 32px;
  border-radius:50px; font-weight:600; font-size:1rem; transition:all .3s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-outline:hover { border-color:var(--coral); color:var(--coral); }

.hero-visual { position:relative; }
.hero-image-wrapper {
  position:relative; border-radius:24px; overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.4);
  border:1px solid rgba(0,212,255,0.15);
}
.hero-image-wrapper img { width:100%; height:400px; object-fit:cover; }
.hero-float-card {
  position:absolute; background:rgba(10,22,40,0.85); backdrop-filter:blur(15px);
  border:1px solid rgba(0,212,255,0.2); border-radius:14px; padding:16px 20px;
  color:var(--white); animation:float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-float-card.card-1 { top:-20px; right:-20px; }
.hero-float-card.card-2 { bottom:30px; left:-30px; animation-delay:2s; }
.hero-float-card .card-num { font-size:1.8rem; font-weight:700; color:var(--cyan); }
.hero-float-card .card-label { font-size:.78rem; color:var(--gray-400); }

/* ═══ STATS BAR ═══ */
.stats-bar {
  background:var(--navy); border-top:1px solid rgba(0,212,255,0.1);
  padding:40px 0;
}
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; text-align:center; }
.stat-item .stat-number { font-family:'Space Grotesk',sans-serif; font-size:2.4rem; font-weight:700; color:var(--cyan); }
.stat-item .stat-label { font-size:.88rem; color:var(--gray-400); margin-top:4px; }

/* ═══ SECTION STYLES ═══ */
.section { padding:90px 0; }
.section-dark { background:var(--navy); }
.section-alt { background:var(--gray-100); }

.section-header { text-align:center; margin-bottom:60px; }
.section-tag {
  display:inline-block; background:var(--cyan-glow); color:var(--cyan);
  padding:6px 18px; border-radius:50px; font-size:.82rem; font-weight:600;
  margin-bottom:14px; border:1px solid rgba(0,212,255,0.2);
}
.section-dark .section-tag { background:rgba(0,212,255,0.1); }
.section-header h2 { font-size:2.4rem; font-weight:700; color:var(--navy); margin-bottom:14px; }
.section-dark .section-header h2 { color:var(--white); }
.section-header p { font-size:1.05rem; color:var(--gray-600); max-width:600px; margin:0 auto; }
.section-dark .section-header p { color:var(--gray-400); }

/* ═══ PRODUCTS GRID ═══ */
.products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(340px,1fr)); gap:30px; }
.product-card {
  background:var(--white); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-sm); transition:transform .4s, box-shadow .4s;
  border:1px solid rgba(0,0,0,0.04);
}
.product-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.product-card .card-image {
  height:250px; overflow:hidden; position:relative;
}
.product-card .card-image img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.product-card:hover .card-image img { transform:scale(1.08); }
.product-card .card-image .card-badge {
  position:absolute; top:14px; left:14px;
  background:var(--gradient-cyan); color:var(--navy);
  padding:5px 14px; border-radius:50px; font-size:.75rem; font-weight:700;
}
.product-card .card-body { padding:24px; }
.product-card .card-body h3 { font-size:1.25rem; color:var(--navy); margin-bottom:8px; }
.product-card .card-body p { font-size:.92rem; color:var(--gray-600); margin-bottom:16px; }
.card-link {
  display:inline-flex; align-items:center; gap:6px;
  color:var(--coral); font-weight:600; font-size:.9rem; transition:gap .3s;
}
.card-link:hover { gap:12px; }

/* Icon placeholder for cards without images */
.card-icon-placeholder {
  height:250px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  font-size:4rem;
}

/* ═══ WHY CHOOSE US ═══ */
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.feature-card {
  background:rgba(255,255,255,0.03); border:1px solid rgba(0,212,255,0.1);
  border-radius:var(--radius); padding:36px 28px; text-align:center;
  transition:all .4s; position:relative; overflow:hidden;
}
.feature-card::before {
  content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:60%; height:2px; background:var(--gradient-cyan); opacity:0; transition:opacity .4s;
}
.feature-card:hover { background:rgba(0,212,255,0.05); border-color:rgba(0,212,255,0.3); transform:translateY(-5px); }
.feature-card:hover::before { opacity:1; }
.feature-icon {
  width:64px; height:64px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px; font-size:1.8rem;
  background:rgba(0,212,255,0.1); color:var(--cyan);
}
.feature-card h3 { color:var(--white); font-size:1.15rem; margin-bottom:10px; }
.feature-card p { color:var(--gray-400); font-size:.9rem; }

/* ═══ INDUSTRIES ═══ */
.industries-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.industry-item {
  background:var(--white); border-radius:var(--radius-sm); padding:28px 20px;
  text-align:center; border:1px solid transparent;
  transition:all .3s; cursor:default;
}
.industry-item:hover { border-color:var(--cyan); box-shadow:var(--shadow-cyan); transform:translateY(-4px); }
.industry-item .ind-icon { font-size:2.2rem; margin-bottom:12px; }
.industry-item h4 { font-size:.95rem; color:var(--navy); font-weight:600; }

/* ═══ PROCESS ═══ */
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; counter-reset:step; }
.process-step {
  text-align:center; position:relative; counter-increment:step;
}
.process-step::before {
  content:counter(step); display:flex; align-items:center; justify-content:center;
  width:56px; height:56px; border-radius:50%; margin:0 auto 20px;
  background:var(--gradient-coral); color:var(--white);
  font-family:'Space Grotesk',sans-serif; font-size:1.4rem; font-weight:700;
}
.process-step h3 { font-size:1.1rem; color:var(--navy); margin-bottom:8px; }
.process-step p { font-size:.88rem; color:var(--gray-600); }

/* ═══ CONTACT FORM ═══ */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:start; }
.contact-info { color:var(--white); }
.contact-info h3 { font-size:1.6rem; margin-bottom:16px; }
.contact-info>p { color:var(--gray-400); margin-bottom:30px; font-size:.95rem; }
.contact-detail { display:flex; align-items:flex-start; gap:14px; margin-bottom:22px; }
.contact-detail .cd-icon {
  width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background:rgba(0,212,255,0.1); color:var(--cyan); font-size:1.2rem; flex-shrink:0;
}
.contact-detail .cd-text strong { display:block; color:var(--white); font-size:.92rem; margin-bottom:2px; }
.contact-detail .cd-text span { color:var(--gray-400); font-size:.88rem; }
.contact-detail .cd-text a { color:var(--cyan); transition:color .3s; }
.contact-detail .cd-text a:hover { color:var(--coral); }

.form-card {
  background:rgba(255,255,255,0.04); border:1px solid rgba(0,212,255,0.15);
  border-radius:var(--radius); padding:36px; backdrop-filter:blur(10px);
}
.form-card h3 { color:var(--white); font-size:1.3rem; margin-bottom:24px; text-align:center; }

.form-group { margin-bottom:18px; }
.form-group label { display:block; color:var(--gray-200); font-size:.85rem; font-weight:500; margin-bottom:6px; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:12px 16px; background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12); border-radius:var(--radius-sm);
  color:var(--white); font-size:.92rem; font-family:'Inter',sans-serif;
  transition:border-color .3s, box-shadow .3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline:none; border-color:var(--cyan); box-shadow:0 0 0 3px rgba(0,212,255,0.15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color:var(--gray-600); }
.form-group select option { background:var(--navy); color:var(--white); }
.form-group textarea { resize:vertical; min-height:100px; }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

.captcha-row {
  display:flex; align-items:center; gap:12px; margin-bottom:18px;
  background:rgba(255,255,255,0.04); padding:12px 16px; border-radius:var(--radius-sm);
  border:1px solid rgba(255,255,255,0.08);
}
.captcha-question { color:var(--amber); font-weight:600; font-size:.95rem; white-space:nowrap; }
.captcha-row input {
  width:80px; padding:8px 12px; background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15); border-radius:8px;
  color:var(--white); font-size:1rem; text-align:center;
}
.captcha-row input:focus { outline:none; border-color:var(--cyan); }

.btn-submit {
  width:100%; padding:14px; background:var(--gradient-coral); color:var(--white);
  border:none; border-radius:50px; font-size:1rem; font-weight:700;
  cursor:pointer; transition:transform .3s, box-shadow .3s;
  font-family:'Space Grotesk',sans-serif;
}
.btn-submit:hover { transform:translateY(-2px); box-shadow:var(--shadow-coral); }
.btn-submit:disabled { opacity:.6; cursor:not-allowed; transform:none; }

.form-status { text-align:center; margin-top:14px; padding:10px; border-radius:8px; font-size:.9rem; display:none; }
.form-status.success { display:block; background:rgba(0,212,255,0.1); color:var(--cyan); }
.form-status.error { display:block; background:rgba(255,107,107,0.1); color:var(--coral); }

/* ═══ MAP ═══ */
.map-section { padding:0; }
.map-wrapper { position:relative; }
.map-wrapper iframe { width:100%; height:400px; border:none; filter:contrast(1.1); }
.map-overlay {
  position:absolute; top:30px; left:30px; background:rgba(10,22,40,0.9);
  backdrop-filter:blur(15px); border:1px solid rgba(0,212,255,0.2);
  padding:24px 28px; border-radius:var(--radius); color:var(--white); max-width:320px;
}
.map-overlay h3 { font-size:1.15rem; margin-bottom:8px; color:var(--cyan); }
.map-overlay p { font-size:.88rem; color:var(--gray-400); line-height:1.6; }

/* ═══ FOOTER ═══ */
.footer {
  background:var(--navy); border-top:1px solid rgba(0,212,255,0.08);
  padding:60px 0 0;
}
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-brand p { color:var(--gray-400); font-size:.88rem; margin-top:14px; line-height:1.7; }
.footer h4 { color:var(--white); font-size:1rem; margin-bottom:16px; font-weight:600; }
.footer ul li { margin-bottom:10px; }
.footer ul li a { color:var(--gray-400); font-size:.88rem; transition:color .3s; }
.footer ul li a:hover { color:var(--cyan); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.06); padding:20px 0;
  display:flex; justify-content:space-between; align-items:center;
}
.footer-bottom p { color:var(--gray-600); font-size:.82rem; }

/* ═══ BACK TO TOP ═══ */
.back-to-top {
  position:fixed; bottom:30px; right:30px; width:48px; height:48px;
  background:var(--gradient-cyan); color:var(--navy); border:none; border-radius:50%;
  font-size:1.2rem; cursor:pointer; opacity:0; visibility:hidden;
  transition:all .3s; z-index:999; display:flex; align-items:center; justify-content:center;
}
.back-to-top.visible { opacity:1; visibility:visible; }
.back-to-top:hover { transform:translateY(-4px); box-shadow:var(--shadow-cyan); }

/* ═══ ANIMATIONS ═══ */
.fade-up { opacity:0; transform:translateY(30px); transition:opacity .6s, transform .6s; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px) {
  .hero .container { grid-template-columns:1fr; text-align:center; }
  .hero-content { order:1; }
  .hero-visual { order:2; max-width:500px; margin:0 auto; }
  .hero p { margin:0 auto 32px; }
  .hero-buttons { justify-content:center; }
  .hero h1 { font-size:2.6rem; }
  .features-grid { grid-template-columns:1fr 1fr; }
  .industries-grid { grid-template-columns:repeat(3,1fr); }
  .process-steps { grid-template-columns:1fr 1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media(max-width:768px) {
  .nav-links { display:none; position:fixed; top:75px; left:0; width:100%; background:rgba(10,22,40,0.98); flex-direction:column; padding:30px; gap:20px; border-top:1px solid rgba(0,212,255,0.1); }
  .nav-links.active { display:flex; }
  .hamburger { display:flex; }
  .hero h1 { font-size:2rem; }
  .hero-float-card { display:none; }
  .stats-grid { grid-template-columns:1fr 1fr; gap:20px; }
  .products-grid { grid-template-columns:1fr; }
  .features-grid { grid-template-columns:1fr; }
  .industries-grid { grid-template-columns:1fr 1fr; }
  .process-steps { grid-template-columns:1fr; }
  .section-header h2 { font-size:1.8rem; }
  .map-overlay { position:relative; top:0; left:0; max-width:100%; border-radius:0; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
  .form-row { grid-template-columns:1fr; }
}
