/* =============================
   KUMAR PRINTER - MAIN STYLESHEET
   ============================= */

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

/* ---- CSS Variables ---- */
:root {
  --navy: #1a2a4a;
  --navy-dark: #111d35;
  --navy-light: #243660;
  --orange: #f5a623;
  --orange-dark: #e09610;
  --orange-light: #ffc04d;
  --white: #ffffff;
  --light-bg: #f8f9fc;
  --text-dark: #1a2a4a;
  --text-muted: #6c757d;
  --border: #e0e6f0;
  --shadow: 0 8px 32px rgba(26,42,74,0.12);
  --shadow-hover: 0 16px 48px rgba(26,42,74,0.2);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; padding: 0; margin: 0; }

/* ---- Utility Classes ---- */
.section-py { padding: 90px 0; }
.section-py-sm { padding: 60px 0; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
}

.text-orange { color: var(--orange); }
.bg-navy { background: var(--navy); }
.bg-orange { background: var(--orange); }
.bg-light-bg { background: var(--light-bg); }

.btn-primary-kp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}
.btn-primary-kp:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}

.btn-outline-kp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-kp:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy-kp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  transition: var(--transition);
  cursor: pointer;
}
.btn-navy-kp:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,42,74,0.3);
}

/* ---- NAVBAR ---- */
#mainNav {
  background: var(--white);
  padding: 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(26,42,74,0.1);
  transition: var(--transition);
}

#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(26,42,74,0.18);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand-logo {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

#mainNav.scrolled .navbar-brand-logo {
  height: 50px;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1); /* Makes the logo white on dark background */
}

.nav-link-kp {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy) !important;
  padding: 28px 16px !important;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.nav-link-kp::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px 2px 0 0;
}

.nav-link-kp:hover,
.nav-link-kp.active {
  color: var(--orange) !important;
}

.nav-link-kp:hover::after,
.nav-link-kp.active::after {
  transform: scaleX(1);
}

.navbar-quote-btn {
  background: var(--orange);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  border: none;
  margin-left: 8px;
  transition: var(--transition);
}
.navbar-quote-btn::after { display: none; }
.navbar-quote-btn:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar a { color: var(--orange); }
.top-bar a:hover { color: var(--orange-light); }
.top-bar .social-icons a {
  color: rgba(255,255,255,0.7);
  margin-left: 10px;
  font-size: 0.85rem;
}
.top-bar .social-icons a:hover { color: var(--orange); }

/* ---- HERO SLIDER ---- */
.hero-section {
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  min-height: 620px;
  background: linear-gradient(rgba(10, 20, 40, 0.7), rgba(10, 20, 40, 0.7)), url('../images/hero_press.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-pattern-circle {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--orange);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span { color: var(--orange); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-graphic {
  width: 420px;
  max-width: 100%;
  position: relative;
}

.hero-float-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px 28px;
  color: white;
  position: absolute;
  animation: floatCard 3s ease-in-out infinite alternate;
}

.hero-float-card.card-1 { bottom: 20px; left: -30px; }
.hero-float-card.card-2 { top: 20px; right: -30px; }

@keyframes floatCard {
  from { transform: translateY(0px); }
  to { transform: translateY(-12px); }
}

.carousel-control-prev, .carousel-control-next {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 1;
  border: 2px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.carousel-control-prev { left: 30px; bottom: auto; }
.carousel-control-next { right: 30px; bottom: auto; }
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.carousel-indicators { bottom: 24px; }
.carousel-indicators button {
  width: 30px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}
.carousel-indicators .active {
  background: var(--orange);
  width: 50px;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--orange);
  padding: 0;
}

.stat-item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(26,42,74,0.15);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--navy);
  opacity: 0.8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- WELCOME SECTION ---- */
.welcome-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 30px 30px 0 var(--light-bg);
}

.welcome-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 200px; height: 200px;
  background: var(--orange);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}

.welcome-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.experience-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--orange);
  color: var(--navy);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow);
}

.experience-badge .years {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.experience-badge .years-label { font-size: 0.75rem; font-weight: 600; }

.welcome-features { margin-top: 2rem; }
.welcome-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.welcome-feature .check-icon {
  width: 28px; height: 28px;
  background: rgba(245,166,35,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(245,166,35,0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(245,166,35,0.05));
  border: 2px solid rgba(245,166,35,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--orange);
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- PRODUCT TABS ---- */
.products-tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3rem;
}

.products-tab-nav .tab-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.products-tab-nav .tab-btn:hover,
.products-tab-nav .tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ---- PRODUCT CARD ---- */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
}

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

.product-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
}

.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,42,74,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: flex-end;
  padding: 20px;
}

.product-card:hover .product-card-overlay { opacity: 1; }

.product-card-body {
  padding: 20px 24px;
}

.product-card-body h5 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.product-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- WHY CHOOSE US ---- */
.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.4);
}

.why-icon {
  width: 72px; height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-card h5 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.why-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---- FAQ SECTION ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(245,166,35,0.4); }

.faq-question {
  padding: 20px 24px;
  background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
}

.faq-question .faq-icon {
  width: 32px; height: 32px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-question .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: -150px; top: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(rgba(245,166,35,0.15), transparent 70%);
}

/* ---- PORTFOLIO GRID ---- */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--navy);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 260px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
.portfolio-item:hover img { transform: scale(1.1); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,42,74,0.9) 0%, rgba(26,42,74,0.3) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h5 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.portfolio-overlay span {
  color: var(--orange);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.portfolio-zoom {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-zoom {
  opacity: 1;
  transform: scale(1);
}

/* ---- LIGHTBOX ---- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay.active { display: flex; }

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.lightbox-content img { width: 100%; height: auto; display: block; }

.lightbox-close {
  position: fixed;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: var(--transition);
}

.lightbox-close:hover { transform: rotate(90deg); background: var(--orange-dark); }

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-group-kp { margin-bottom: 20px; }

.form-label-kp {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control-kp {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
}

.form-control-kp:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.1);
}

.form-control-kp::placeholder { color: #aab0c0; }

textarea.form-control-kp { resize: vertical; min-height: 130px; }
select.form-control-kp { cursor: pointer; }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
  color: var(--white);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-info-icon {
  width: 50px; height: 50px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
  background: var(--light-bg);
}

.map-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(135deg, var(--light-bg), #e8edf5);
  color: var(--text-muted);
}

.map-placeholder i { font-size: 3rem; color: var(--orange); }

/* ---- HOURS SECTION ---- */
.hours-table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: var(--light-bg); }
.hours-row .day { font-weight: 600; color: var(--navy); }
.hours-row .time { color: var(--text-muted); font-size: 0.9rem; }
.hours-row .status { 
  font-size: 0.75rem; font-weight: 700; 
  padding: 3px 10px; border-radius: 50px;
}
.status.open { background: rgba(34,197,94,0.1); color: #16a34a; }
.status.closed { background: rgba(239,68,68,0.1); color: #dc2626; }

/* ---- ABOUT PAGE ---- */
.timeline {
  position: relative;
  padding: 0 0 0 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--navy));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--orange);
}

.timeline-year {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--orange);
  height: 100%;
}

.mission-card h4 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.mission-card p { color: var(--text-muted); line-height: 1.8; }

/* ---- TEAM/INFRA ---- */
.infra-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.infra-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.infra-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

/* ---- PAGE HERO (subpages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

.breadcrumb-kp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb-kp a { color: var(--orange); }
.breadcrumb-kp a:hover { color: var(--orange-light); }

/* ---- COUNTER ANIMATION ---- */
.counter-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.counter-card {
  text-align: center;
  padding: 40px 24px;
}

.counter-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-area {
  margin-bottom: 24px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}

.footer-social-link:hover {
  background: var(--orange);
  color: var(--navy);
  transform: translateY(-3px);
  border-color: var(--orange);
}

.footer-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1.1rem;
  transition: transform 0.2s;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item i {
  color: var(--orange);
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: var(--orange); }

/* ---- FLOATING BUTTONS ---- */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  color: white;
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}

.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  z-index: 998;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--orange);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ---- ANIMATIONS ---- */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
  .hero-slide { min-height: 500px; }
  .nav-link-kp { padding: 12px 16px !important; }
  .hero-section { margin-top: 90px; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 767.98px) {
  .section-py { padding: 60px 0; }
  .hero-slide { min-height: 460px; min-height: auto; padding: 60px 0; }
  .hero-title { font-size: 2rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(26,42,74,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .experience-badge { position: static; margin-top: 20px; display: inline-flex; gap: 12px; align-items: center; }
  .hero-float-card { display: none; }
}

@media (max-width: 575.98px) {
  .hero-btns { flex-direction: column; }
  .btn-primary-kp, .btn-outline-kp { text-align: center; justify-content: center; }
  .filter-buttons { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.82rem; }
}
