/* =============================================
   MAHAKAL INFOTECH - Main Stylesheet
   Colors: #0A2F73 (Navy) | #FF6B00 (Orange)
   ============================================= */

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

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --navy: #0A2F73;
  --navy-dark: #071f4e;
  --navy-light: #1a4a9e;
  --orange: #FF6B00;
  --orange-dark: #e05e00;
  --orange-light: #ff8533;
  --white: #ffffff;
  --light-bg: #f8faff;
  --light-gray: #f1f4f9;
  --mid-gray: #e2e8f0;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --shadow-sm: 0 1px 3px rgba(10,47,115,0.08), 0 1px 2px rgba(10,47,115,0.05);
  --shadow-md: 0 4px 16px rgba(10,47,115,0.10), 0 2px 6px rgba(10,47,115,0.06);
  --shadow-lg: 0 10px 40px rgba(10,47,115,0.14), 0 4px 12px rgba(10,47,115,0.08);
  --shadow-xl: 0 20px 60px rgba(10,47,115,0.18), 0 8px 20px rgba(10,47,115,0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }
section { position: relative; }

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

/* =============================================
   UTILITY CLASSES
   ============================================= */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(10,47,115,0.08));
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,107,0,0.2);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,0,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  box-shadow: 0 8px 30px rgba(255,107,0,0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  transform: translateY(-2px);
}

.btn-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10,47,115,0.3);
}
.btn-navy:hover {
  box-shadow: 0 8px 30px rgba(10,47,115,0.45);
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--mid-gray);
  transition: var(--transition);
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { left: 14px; right: 14px; }

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(255,107,0,0.3);
}
.nav-cta:hover { box-shadow: 0 8px 24px rgba(255,107,0,0.45); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8faff 0%, #eef3ff 40%, #fff5ee 100%);
  padding: 100px 0 60px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(10,47,115,0.06));
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title .highlight {
  color: var(--orange);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.stat-item { text-align: left; }
.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider { width: 1px; background: var(--mid-gray); }

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-card-main {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--mid-gray);
  position: relative;
  z-index: 2;
}

.hero-logo-wrap {
  text-align: center;
  padding: 24px 0;
}

.hero-logo-wrap img {
  max-width: 260px;
  margin: 0 auto 20px;
}

.hero-logo-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.hero-service-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.hero-service-chip:hover {
  background: linear-gradient(135deg, rgba(255,107,0,0.08), rgba(10,47,115,0.05));
  border-color: rgba(255,107,0,0.2);
  transform: translateY(-3px);
}

.hero-service-chip .icon {
  font-size: 1.5rem;
}

.hero-service-chip span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--mid-gray);
  z-index: 3;
  animation: floatY 4s ease-in-out infinite;
}

.float-card-1 { top: -20px; right: -20px; animation-delay: 0s; }
.float-card-2 { bottom: 20px; left: -30px; animation-delay: 2s; }

.float-card .fc-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.fc-orange { background: rgba(255,107,0,0.12); color: var(--orange); }
.fc-green { background: rgba(37,211,102,0.12); color: #25D366; }

.hero-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}
.hero-decor-1 {
  width: 400px; height: 400px;
  background: var(--orange);
  top: -100px; right: -100px;
}
.hero-decor-2 {
  width: 300px; height: 300px;
  background: var(--navy);
  bottom: -80px; left: -80px;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
#about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-img-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.about-img-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(255,107,0,0.1);
  border-radius: 50%;
}

.about-img-card img {
  max-width: 220px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.3));
}

.about-img-card .tagline {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.about-badges {
  position: absolute;
  bottom: -20px; right: -20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-badge-chip {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  border-left: 4px solid var(--orange);
}

.about-content .section-subtitle {
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.about-feature:hover {
  background: rgba(255,107,0,0.06);
  border-color: rgba(255,107,0,0.15);
  transform: translateX(4px);
}

.about-feature .af-icon {
  width: 38px; height: 38px;
  min-width: 38px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.about-feature h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =============================================
   SECURA WEB SECTION
   ============================================= */
#secura {
  padding: 100px 0;
  background: linear-gradient(160deg, #f8faff 0%, #fff5ee 100%);
}

.secura-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.secura-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.secura-brand-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}

.secura-brand-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.secura-brand-text p {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.secura-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 20px;
}

.secura-partner-badge span {
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.secura-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.secura-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.secura-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.secura-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(255,107,0,0.2);
}

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

.sc-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(10,47,115,0.08), rgba(255,107,0,0.08));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.secura-card:hover .sc-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.secura-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.secura-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  transition: var(--transition);
}
.sc-link:hover { gap: 10px; }
.sc-arrow { transition: var(--transition); }

/* =============================================
   HARDWARE SECTION
   ============================================= */
#hardware {
  padding: 100px 0;
  background: var(--white);
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.hw-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}

.hw-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: rgba(10,47,115,0.15);
}

.hw-card-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.hw-card-top::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}

.hw-icon-wrap {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.hw-card-top h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.hw-card-body {
  padding: 22px 28px;
}

.hw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hw-tag {
  background: var(--light-bg);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--mid-gray);
}

.hw-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
#why {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(255,107,0,0.08);
  border-radius: 50%;
}

#why::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

#why .section-title { color: var(--white); }
#why .section-subtitle { color: rgba(255,255,255,0.65); }
#why .section-badge {
  background: rgba(255,107,0,0.15);
  border-color: rgba(255,107,0,0.3);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.why-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.why-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(255,107,0,0.35);
  transition: var(--transition);
}

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

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* =============================================
   QUOTATION FORM SECTION
   ============================================= */
#quote {
  padding: 100px 0;
  background: var(--light-bg);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.quote-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.quote-info p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.quote-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qci {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.qci:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255,107,0,0.12);
}

.qci-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.qci-orange { background: rgba(255,107,0,0.12); }
.qci-green { background: rgba(37,211,102,0.12); }
.qci-navy { background: rgba(10,47,115,0.1); }

.qci-text p { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.qci-text a { font-size: 0.92rem; font-weight: 700; color: var(--navy); transition: var(--transition); }
.qci-text a:hover { color: var(--orange); }

/* Form */
.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--mid-gray);
}

.quote-form-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.quote-form-card .form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-group label .req { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--light-bg);
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A2F73' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,107,0,0.1);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 160px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

/* Form States */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  animation: bounceIn 0.6s ease;
}
.form-success h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* =============================================
   CONTACT SECTION
   ============================================= */
#contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(10,47,115,0.15);
}

.cc-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
}

.cc-navy { background: linear-gradient(135deg, rgba(10,47,115,0.1), rgba(10,47,115,0.06)); }
.cc-orange { background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,107,0,0.06)); }
.cc-green { background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(37,211,102,0.06)); }

.contact-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-card a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-card a:hover { color: var(--orange); }

.contact-card .cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.cc-btn-navy {
  background: rgba(10,47,115,0.08);
  color: var(--navy);
  border: 1px solid rgba(10,47,115,0.15);
}
.cc-btn-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.cc-btn-green {
  background: rgba(37,211,102,0.1);
  color: #128C7E;
  border: 1px solid rgba(37,211,102,0.2);
}
.cc-btn-green:hover {
  background: #25D366;
  color: var(--white);
}

.cc-btn-orange {
  background: rgba(255,107,0,0.1);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.2);
}
.cc-btn-orange:hover {
  background: var(--orange);
  color: var(--white);
}

/* Map placeholder */
.contact-map {
  margin-top: 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--mid-gray);
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand img {
  max-height: 60px;
  max-width: 180px;
  width: auto;
  height: auto;
  margin-bottom: 16px;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  max-width: 280px;
}

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

.footer-social {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

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

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,107,0,0.4);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a::before { content: '›'; opacity: 0.5; transition: var(--transition); }
.footer-links a:hover::before { opacity: 1; color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom .powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.powered-by a {
  color: var(--orange);
  font-weight: 600;
  transition: var(--transition);
}
.powered-by a:hover { color: var(--orange-light); }

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
#float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}

.float-wa-btn {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.float-wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,0.6);
}

.float-wa-btn svg {
  width: 30px; height: 30px;
  fill: white;
}

.float-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2s ease infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.float-wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid var(--mid-gray);
}

.float-wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--white);
}

#float-whatsapp:hover .float-wa-tooltip { opacity: 1; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   SCROLL TO TOP
   ============================================= */
#scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

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

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

/* =============================================
   RESPONSIVE
   ============================================= */

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { display: none; }
  .secura-intro { grid-template-columns: 1fr; gap: 32px; }
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sc-product-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hw-product-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
  #quote { padding: 70px 0; }
  #why { padding: 70px 0; }
  #hero { padding: 90px 0 50px; }
  .quote-info h2 { font-size: 1.8rem; }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--mid-gray);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; font-size: 0.95rem; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { text-align: center; justify-content: center; margin-top: 8px; }

  #hero { padding: 90px 0 50px; min-height: auto; text-align: center; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero-badge { margin: 0 auto 24px; }

  .page-header { padding: 100px 0 40px; }
  .page-title { font-size: 1.8rem; }
  .page-subtitle { font-size: 0.95rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .sc-product-grid { grid-template-columns: 1fr; gap: 20px; }
  .hw-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .form-row { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; gap: 32px; }
  .quote-info h2 { font-size: 1.5rem; }
  .quote-form-card { padding: 24px 18px; }

  .footer-socials { flex-wrap: wrap; }
  .footer-brand { text-align: center; }
  .footer-brand img { margin: 0 auto 16px; }
  .footer-brand p { max-width: 100%; margin: 0 auto 20px; }
  .footer-socials { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  section { padding: 60px 0; }
  #quote { padding: 60px 0; }
  #why { padding: 60px 0; }
  #contact { padding: 60px 0; }
  .section-header { margin-bottom: 32px; }

  .btn { padding: 12px 22px; font-size: 0.88rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .sc-product-banner { height: 220px; }
  .hw-img-wrap { height: 180px; }

  .why-card { padding: 24px 18px; }
  .why-icon { width: 56px; height: 56px; font-size: 1.4rem; }
}

/* --- Small mobile (max 480px) --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .stat-divider { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .hw-product-grid { grid-template-columns: 1fr; gap: 16px; }

  .quote-form-card { padding: 20px 14px; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; justify-content: center; }

  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.9rem; }
  .quote-info h2 { font-size: 1.3rem; }

  .footer-col h4 { font-size: 0.95rem; }
  .footer-links a { font-size: 0.82rem; }
  .footer-bottom p { font-size: 0.75rem; }

  .sc-product-banner { height: 200px; }
  .sc-product-body { padding: 20px; }
  .sc-product-body h3 { font-size: 1.2rem; }
  .hw-img-wrap { height: 200px; }
  .hw-img-body h3 { font-size: 1rem; }
  .hw-img-body p { font-size: 0.82rem; }

  .btn { padding: 11px 18px; font-size: 0.85rem; }
  .hero-actions { gap: 10px; }

  .page-header { padding: 90px 0 32px; }
  .page-title { font-size: 1.5rem; }

  .quote-contact-items { gap: 12px; }
  .qci { padding: 14px; }

  .nav-logo img { height: 38px; }
  .nav-inner { height: 60px; }
  .nav-links { top: 60px; }
}

/* =============================================
   SECTION DIVIDERS
   ============================================= */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mid-gray), transparent);
  margin: 0 auto;
  max-width: 800px;
}

/* Print */
@media print { #navbar, #float-whatsapp, #scroll-top { display: none; } }

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
#testimonials {
  padding: 100px 0;
  background: var(--light-bg);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(255,107,0,0.2);
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.t-info h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.t-info .t-stars {
  color: #fbbc04;
  font-size: 0.9rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-card p::before {
  content: '❝ ';
  color: var(--orange);
  font-size: 1.2rem;
}
.testimonial-card p::after {
  content: ' ❞';
  color: var(--orange);
  font-size: 1.2rem;
}

/* Page Header for subpages */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 130px 0 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 60%);
  transform: rotate(-15deg);
  pointer-events: none;
}
.page-header .page-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.page-header .page-title span {
  color: var(--orange);
}
.page-header .page-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto;
}

/* =============================================
   SECURA PRODUCT CARDS GRID (secura.html)
   ============================================= */
.sc-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.sc-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.sc-product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: rgba(255, 107, 0, 0.2);
}

.sc-product-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #071d4a 0%, #0a2f73 60%, #0f3d8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-product-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: var(--transition);
}

.sc-product-card:hover .sc-product-banner img {
  transform: scale(1.05);
}

.sc-product-cat {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 47, 115, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.sc-product-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sc-product-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sc-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.sc-feature-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sc-feature-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: bold;
  font-size: 0.95rem;
}

.sc-product-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.sc-product-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 16px;
  font-size: 0.88rem;
}

/* Media Queries for Secura Products */
@media (max-width: 992px) {
  .sc-product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sc-product-banner {
    height: 200px;
  }
}


/* =============================================
   HARDWARE IMAGE PRODUCT CARDS (hardware.html)
   ============================================= */

.hw-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.hw-img-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  box-shadow: 0 4px 20px rgba(10,47,115,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.hw-img-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10,47,115,0.16);
  border-color: rgba(255,107,0,0.3);
}

/* Image wrapper — tall enough to show the image fully */
.hw-img-wrap {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hw-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 16px;
  transition: transform 0.4s ease;
}

.hw-img-card:hover .hw-img-wrap img {
  transform: scale(1.06);
}

/* Category badge over image */
.hw-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,47,115,0.75) 0%, transparent 100%);
  padding: 18px 14px 10px;
  display: flex;
  align-items: flex-end;
}

.hw-img-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(255,107,0,0.88);
  backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  white-space: nowrap;
}

/* Card body */
.hw-img-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}

.hw-img-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}

.hw-img-body .hw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hw-img-body .hw-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(10,47,115,0.07);
  border: 1px solid rgba(10,47,115,0.12);
  padding: 3px 10px;
  border-radius: 100px;
}

.hw-img-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Quote button */
.hw-enquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c00 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 4px;
  box-shadow: 0 4px 14px rgba(255,107,0,0.3);
}

.hw-enquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,107,0,0.45);
  color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .hw-product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

@media (max-width: 860px) {
  .hw-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .hw-img-wrap {
    height: 180px;
  }
}

@media (max-width: 520px) {
  .hw-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hw-img-wrap {
    height: 200px;
  }
}



