/* ============================
   LiceAway — Global Stylesheet
   ============================ */

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

:root {
  --primary: #41cf41;
  --primary-light: #6edd6e;
  --secondary: #08ad08;
  --tertiary: #444444;
  --white: #ffffff;
  --off-white: #f8faf8;
  --light-gray: #eef5ee;
  --dark: #1a1a1a;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
}

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

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

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

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }

.section-subtitle {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #666;
  font-size: 1.05rem;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(65, 207, 65, 0.35);
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(8, 173, 8, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
}

.btn-phone {
  background: var(--primary);
  color: var(--white);
  font-size: 1.1rem;
  padding: 1rem 2.2rem;
  box-shadow: 0 4px 15px rgba(65, 207, 65, 0.35);
}

.btn-phone:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(8, 173, 8, 0.4);
}

.btn-phone svg {
  width: 20px;
  height: 20px;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-5deg); }
  50% { transform: rotate(0); }
}

/* ---------- Header / Navbar ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition);
  padding: 1rem 0;
  background: #fefefe;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled {
  background: #fefefe;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0.6rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-block;
  transition: opacity var(--transition);
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--tertiary);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header.scrolled .nav-links a {
  color: var(--tertiary);
}

.header.scrolled .nav-links a:hover {
  color: var(--secondary);
}

.nav-phone {
  display: flex;
}

.nav-phone a {
  background: var(--primary);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-phone a:hover {
  background: var(--secondary);
  transform: translateY(-1px);
}

.nav-phone a::after {
  display: none !important;
}

.nav-phone svg {
  width: 18px;
  height: 18px;
}


/* When mobile nav is open, drop header below overlay */
.header.nav-open {
  z-index: 1000;
}

.header.nav-open .logo,
.header.nav-open .nav-links {
  visibility: hidden;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1003;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--tertiary);
  border-radius: 3px;
  transition: all var(--transition);
}

.header.scrolled .hamburger span {
  background: var(--tertiary);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../assets/images/hero-background.jpg') center/cover no-repeat;
  color: var(--dark);
  text-align: center;
  padding: 8rem 1rem 4rem;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,40 C360,80 1080,0 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero h1 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero p {
  font-size: 1.05rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Floating particles in hero */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(65, 207, 65, 0.12);
  pointer-events: none;
}

/* ---------- About Section ---------- */
.about {
  padding: 6rem 0;
  background: var(--white);
}

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

.about-text p {
  color: #555;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.about-visual {
  position: relative;
}

.about-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

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

.about-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* ---------- Suspect Section ---------- */
.suspect {
  padding: 6rem 0;
  background: var(--off-white);
}

.suspect-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.suspect-text h2 {
  margin-bottom: 1.5rem;
}

.suspect-text p {
  color: #555;
  font-size: 1.05rem;
}

.urgency-box {
  background: var(--white);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1.5rem;
  box-shadow: var(--shadow);
}

.urgency-box p {
  margin: 0;
  font-weight: 500;
  color: var(--dark);
}

.suspect-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition);
}

.info-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}

.info-card-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.info-card h4 {
  margin-bottom: 0.25rem;
}

.info-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}

/* ---------- Services Section ---------- */
.services {
  padding: 6rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-step {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--secondary);
  transition: all var(--transition);
}

.service-card:hover .service-step {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* ---------- CTA Section ---------- */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta::before {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
}

.cta::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -50px;
}

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

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.cta .btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
}

/* ---------- Contact Form Section ---------- */
.contact-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: #555;
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.contact-item-text a {
  color: var(--secondary);
  font-weight: 600;
}

.contact-item-text a:hover {
  color: var(--primary);
}

.contact-item-text span {
  display: block;
  font-size: 0.85rem;
  color: #999;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

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

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

.contact-form .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem;
}

/* ---------- Footer ---------- */
.footer {
  background: #fefefe;
  color: var(--tertiary);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1rem;
}


.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 350px;
}

.footer h4 {
  color: var(--dark);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.footer-links a {
  display: block;
  padding: 0.3rem 0;
  color: #555;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-contact-list a {
  color: #555;
}

.footer-contact-list a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #e8e8e8;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

/* ---------- Page Headers (inner pages) ---------- */
.page-header {
  padding: 10rem 1rem 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  background: linear-gradient(135deg, rgba(10, 40, 10, 0.8), rgba(8, 173, 8, 0.6)),
              url('../assets/images/hero-background.jpg') center/cover no-repeat;
}

.page-header--products {
  background: linear-gradient(135deg, rgba(10, 40, 10, 0.8), rgba(8, 173, 8, 0.6)),
              url('../assets/images/product-hero-bg.jpg') center/cover no-repeat;
}

.page-header--faq {
  background: linear-gradient(135deg, rgba(10, 40, 10, 0.8), rgba(8, 173, 8, 0.6)),
              url('../assets/images/faq-hero-background.jpg') center/cover no-repeat;
}

.page-header--about-lice {
  background: linear-gradient(135deg, rgba(10, 40, 10, 0.8), rgba(8, 173, 8, 0.6)),
              url('../assets/images/about-lice-hero-background.jpg') center/cover no-repeat;
}

.page-header--services {
  background: linear-gradient(135deg, rgba(10, 40, 10, 0.8), rgba(8, 173, 8, 0.6)),
              url('../assets/images/product-hero-bg.jpg') center/cover no-repeat;
}

/* ---------- About Lice Page ---------- */
.about-lice-section {
  padding: 6rem 0;
}

.about-lice-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-lice-content p {
  color: #555;
  font-size: 1.05rem;
}

.about-lice-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.about-lice-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.about-lice-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 1.05rem;
}

.about-lice-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* ---------- Services Page ---------- */
.services-page-section {
  padding: 6rem 0;
}

.services-page-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-page-content p {
  color: #555;
  font-size: 1.05rem;
}

.services-page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.services-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.services-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}

.services-step-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(5px);
}

.services-step-number {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}

.services-step-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.services-step-body p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}

.services-callout {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  padding: 3rem 2rem;
  color: var(--white);
  text-align: center;
  margin-top: 3rem;
}

.services-callout h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.services-callout p {
  color: var(--white);
  opacity: 0.95;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,30 C360,60 1080,0 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat center/cover;
}

.page-header h1 {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* ---------- Products Page ---------- */
.products-section {
  padding: 6rem 0;
}

.products-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.products-intro p {
  color: #555;
  font-size: 1.05rem;
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--light-gray);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
  transition: all var(--transition);
}

.badge:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.badge svg {
  width: 16px;
  height: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

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

.product-card-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.product-card-icon img {
  width: 24px;
  height: 24px;
}

.product-card-header h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin: 0;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-body h4 {
  font-size: 0.85rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.product-card-body p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ---------- FAQ Page ---------- */
.faq-section {
  padding: 6rem 0;
}

.faq-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.faq-intro p {
  color: #555;
  font-size: 1.05rem;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(65, 207, 65, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--tertiary);
  transition: color var(--transition);
}

.faq-item.active .faq-icon svg {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: #555;
  line-height: 1.8;
}

.faq-callout {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  padding: 3rem 2rem;
  color: var(--white);
  text-align: center;
  margin-top: 3rem;
}

.faq-callout h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.faq-callout p {
  opacity: 0.95;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Mobile Nav Overlay ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: var(--white);
  z-index: 1002;
  padding: 5rem 2rem 2rem;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--tertiary);
  border-bottom: 1px solid #eee;
}

.mobile-nav a:hover {
  color: var(--secondary);
}

.mobile-nav-phone {
  margin-top: 2rem;
}

.mobile-nav-phone a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 700;
  border: none;
  font-size: 1.2rem;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 65px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 90vh;
    padding: 9rem 1rem 3rem;
  }

  .about-grid,
  .suspect-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .badge-grid {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .about-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .page-header {
    padding: 9rem 1rem 3rem;
  }
}
