/* 
    JSKA Bitez - Corporate Business Website
    Color Palette:
    Primary: Deep Blue / Navy (#0a2540)
    Secondary: Electric Blue (#0066ff)
    Accent: Amber/Orange (#ff6a00)
    Background: White (#ffffff) / Light Grey (#f8f9fa)
    Text: Dark Charcoal (#343a40)
*/

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

:root {
  --primary-color: #0a2540;
  --primary-light: #183e66;
  --secondary-color: #0066ff;
  --accent-color: #ff6a00;
  --accent-hover: #e05e00;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gray: #e9ecef;
  --text-main: #212529;
  --text-muted: #6c757d;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Typography Specifics */
h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

/* Utilities */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-light-gray {
  background-color: var(--bg-light) !important;
}

/* Buttons */
.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #005ce6;
  border-color: #005ce6;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(255, 106, 0, 0.2);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 26px;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  border-width: 2px;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background-color: #fff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  padding: 15px 0;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  height: 40px;
}

.navbar-brand span {
  color: var(--secondary-color);
}

.nav-link {
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 16px !important;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: var(--transition);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* How It Works & Services */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.feature-card {
  background: #fff;
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 102, 255, 0.1);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-color);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 102, 255, 0.05);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--secondary-color);
  color: #fff;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Machine Cards (Services) */
.machine-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.machine-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.machine-img-wrapper {
  background-color: var(--bg-light);
  padding: 40px 20px;
  text-align: center;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.machine-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.1));
  transition: var(--transition);
}

.machine-card:hover .machine-img-wrapper img {
  transform: scale(1.05);
}

.machine-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.machine-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.machine-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.machine-desc {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.machine-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.machine-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.machine-features li i {
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 16px;
}

/* Stats / Trust Section */
.trust-section {
  background-color: var(--primary-color);
  position: relative;
  color: #fff;
  padding: 80px 0;
  background-image: radial-gradient(circle at 100% 0%, rgba(0, 102, 255, 0.4) 0%, transparent 40%);
}

.trust-stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Call To Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') repeat;
  opacity: 0.5;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Form Styles */
.form-control,
.form-select {
  padding: 14px 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid #ced4da;
  background-color: #f8f9fa;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  background-color: #fff;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 255, 0.1);
}

.form-floating>label {
  padding: 14px 20px;
}

.contact-form-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Contact Info Box */
.contact-info-card {
  background: var(--primary-color);
  color: #fff;
  padding: 50px;
  border-radius: var(--border-radius-lg);
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" fill-opacity="1" d="M0,160L48,149.3C96,139,192,117,288,128C384,139,480,181,576,197.3C672,213,768,203,864,176C960,149,1056,107,1152,90.7C1248,75,1344,85,1392,90.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0;
  transition: var(--transition);
}

.contact-text a:hover {
  color: #fff;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 80px 0 30px;
  margin-top: auto;
}

.footer-logo {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--secondary-color);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Page Header */
.page-header {
  padding: 180px 0 100px;
  background-color: var(--bg-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
  pointer-events: none;
}

.page-header h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.breadcrumb-item a {
  color: var(--secondary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Specific About Section */
.about-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.about-image img {
  width: 100%;
  display: block;
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary-color);
  color: #fff;
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 4px solid #fff;
}

.about-experience h3 {
  font-size: 2.5rem;
  margin: 0;
  color: var(--secondary-color);
}

.about-experience p {
  margin: 0;
  font-weight: 500;
}

/* Steps */
.step-card {
  text-align: center;
  position: relative;
  padding: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(10, 37, 64, 0.1);
}

.step-connector {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: dashed 2px rgba(10, 37, 64, 0.2);
  z-index: 1;
}

@media (max-width: 991px) {
  .step-connector {
    display: none;
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero-section {
    padding: 120px 0 60px;
  }

  .about-experience {
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .page-header {
    padding: 120px 0 60px;
  }
}


/* ===============================
   WHATSAPP FLOAT BUTTON
================================*/
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#25D366,#128C7E);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:9999;
    transition:.35s;
    text-decoration:none;
}

/* Hover Lift */
.whatsapp-float:hover{
    transform:translateY(-6px) scale(1.05);
    box-shadow:0 18px 40px rgba(0,0,0,.35);
    color:#fff;
}

/* Icon */
.wa-icon{
    width:30px;
    height:30px;
}

/* Tooltip */
.wa-tooltip{
    position:absolute;
    right:75px;
    background:#111827;
    color:#fff;
    padding:8px 14px;
    border-radius:8px;
    font-size:14px;
    opacity:0;
    transform:translateX(10px);
    transition:.3s;
    white-space:nowrap;
}

.whatsapp-float:hover .wa-tooltip{
    opacity:1;
    transform:translateX(0);
}

/* Pulse Animation */
.whatsapp-float::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:#25D366;
    animation:waPulse 2s infinite;
    z-index:-1;
}

@keyframes waPulse{
    0%{transform:scale(1);opacity:.6;}
    70%{transform:scale(1.6);opacity:0;}
    100%{opacity:0;}
}


