/* ==========================================
   AnywhereChemist - Modern & Responsive
   ========================================== */

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

:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  --red-accent: #dc2626;
  --radius: 8px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  padding-top: 10px;
}

html {
  scroll-behavior: smooth;
}

p {
  font-size: 18px;
  line-height: 30px;
}

/* Margin Top */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.mt-70 { margin-top: 70px; }
.mt-80 { margin-top: 80px; }
.mt-90 { margin-top: 90px; }
.mt-100 { margin-top: 100px; }

/* Margin Right */
.mr-10 { margin-right: 10px; }
.mr-20 { margin-right: 20px; }
.mr-30 { margin-right: 30px; }
.mr-40 { margin-right: 40px; }
.mr-50 { margin-right: 50px; }
.mr-60 { margin-right: 60px; }
.mr-70 { margin-right: 70px; }
.mr-80 { margin-right: 80px; }
.mr-90 { margin-right: 90px; }
.mr-100 { margin-right: 100px; }

/* Margin Bottom */
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mb-70 { margin-bottom: 70px; }
.mb-80 { margin-bottom: 80px; }
.mb-90 { margin-bottom: 90px; }
.mb-100 { margin-bottom: 100px; }

/* Margin Left */
.ml-10 { margin-left: 10px; }
.ml-20 { margin-left: 20px; }
.ml-30 { margin-left: 30px; }
.ml-40 { margin-left: 40px; }
.ml-50 { margin-left: 50px; }
.ml-60 { margin-left: 60px; }
.ml-70 { margin-left: 70px; }
.ml-80 { margin-left: 80px; }
.ml-90 { margin-left: 90px; }
.ml-100 { margin-left: 100px; }

/* Padding Top */
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pt-30 { padding-top: 30px; }
.pt-40 { padding-top: 40px; }
.pt-50 { padding-top: 50px; }
.pt-60 { padding-top: 60px; }
.pt-70 { padding-top: 70px; }
.pt-80 { padding-top: 80px; }
.pt-90 { padding-top: 90px; }
.pt-100 { padding-top: 100px; }

/* Padding Right */
.pr-10 { padding-right: 10px; }
.pr-20 { padding-right: 20px; }
.pr-30 { padding-right: 30px; }
.pr-40 { padding-right: 40px; }
.pr-50 { padding-right: 50px; }
.pr-60 { padding-right: 60px; }
.pr-70 { padding-right: 70px; }
.pr-80 { padding-right: 80px; }
.pr-90 { padding-right: 90px; }
.pr-100 { padding-right: 100px; }

/* Padding Bottom */
.pb-10 { padding-bottom: 10px; }
.pb-20 { padding-bottom: 20px; }
.pb-30 { padding-bottom: 30px; }
.pb-40 { padding-bottom: 40px; }
.pb-50 { padding-bottom: 50px; }
.pb-60 { padding-bottom: 60px; }
.pb-70 { padding-bottom: 70px; }
.pb-80 { padding-bottom: 80px; }
.pb-90 { padding-bottom: 90px; }
.pb-100 { padding-bottom: 100px; }

/* Padding Left */
.pl-10 { padding-left: 10px; }
.pl-20 { padding-left: 20px; }
.pl-30 { padding-left: 30px; }
.pl-40 { padding-left: 40px; }
.pl-50 { padding-left: 50px; }
.pl-60 { padding-left: 60px; }
.pl-70 { padding-left: 70px; }
.pl-80 { padding-left: 80px; }
.pl-90 { padding-left: 90px; }
.pl-100 { padding-left: 100px; }

/* ==========================================
   HEADER STYLES
   ========================================== */

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  min-height: 70px;
}

main {
  margin-top: 70px;
}

/* Logo Section */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
  min-width: auto;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-image {
  width: 124px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  
}

.logo-image img {
  color: var(--muted);
  font-size: 0.92rem;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  text-align: center;
}

.logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  transition: color 0.2s ease;
  white-space: nowrap;
}

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


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

.logo:hover > div {
  background: rgba(37, 99, 235, 0.1);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

/* Navigation Menu */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 0;
  position: relative;
  transition: var(--transition);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Active Navigation Link */
nav a.active {
  color: var(--red-accent);
  font-weight: 700;
}

nav a.active::after {
  width: 100%;
  background: var(--red-accent);
}

/* Right Side Controls */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 220px;
  justify-content: flex-end;
}

.fast-quote-btn {
  background: var(--text-dark);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fast-quote-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.search-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-dark);
  transition: var(--transition);
}

.cart-icon-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  text-decoration: none;
  font-size: 20px;
  transition: var(--transition);
  color: var(--text-dark);
}

.cart-icon-link:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  min-width: 24px;
}
.image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: #f8fafc;
}

/* Image */
.image-container {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
}

.image-container img {
  width: 100%;
  height: 300px;
  object-fit: cover; /* 👈 FIX */
  display: block;
  border-radius: 15px;
}

/* Text */
.text-content {
  flex: 1;
}

.text-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1e293b;
}

.text-content p {
  font-size: 18px;
  color: #475569;
  line-height: 30px;
}


.search-icon:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}



/* ==========================================
   MAIN CONTENT
   ========================================== */

main {
  margin-top: 60px;
  min-height: calc(100vh - 70px - 300px);
  /* max-width: 1140px; */
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  margin-top: 60px;
  background:
    url('../asset/hero.png') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  color: white;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  
  z-index: 1;
}

.hero-glass {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.hero-content {
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255,255,255,0.2);
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 4.5rem);
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(245, 245, 255, 0.95);
  margin-bottom: 25px;
}

.hero-content .hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.hero-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.view-products-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

/* Hover Effect */
.view-products-btn:hover {
  background: linear-gradient(135deg, #1e40af, #1e3a8a);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
}

/* Center Button */
.product-preview-footer {
  text-align: center;
  margin-top: 20px;
}

.hero-buttons .btn-primary {
  background: linear-gradient(110deg, #ffffff, rgba(255,255,255,0.55));
  color: #0f172a;
  text-decoration: none;
}

.hero-buttons .btn-secondary {
  background: rgba(255,255,255,0.18);
  color: #f8fafc;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
}

.hero-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 20px 45px rgba(0,0,0,0.35),
    inset 0 1px 1px rgba(255,255,255,0.25);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.hero-illustration::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(37,99,235,0.3), rgba(255,255,255,0.1));
  
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-illustration:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 32px 64px rgba(0,0,0,0.4),
    inset 0 1px 1px rgba(255,255,255,0.5),
    0 0 80px rgba(37,99,235,0.35);
}

.hero-illustration img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  box-shadow: 
    0 20px 40px rgba(4, 10, 25, 0.35),
    0 0 40px rgba(37,99,235,0.2);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  filter: brightness(1.05) contrast(1.08);
}

.hero-illustration:hover img {
  filter: brightness(1.15) contrast(1.12) drop-shadow(0 10px 30px rgba(37,99,235,0.3));
}

.hero-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-section p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 30px;
}

.hero-section a {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 14px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.hero-section a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-title {
  font-size: clamp(2.5rem, 3vw, 4rem);
  color: var(--text-dark);
  margin: 0 auto 40px;
  text-align: center;
  max-width: 100%;
  line-height: 1.05;
}

.about-title {
  font-size: 36px;
  color: #0f172a;
  margin: 100px auto 30px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  position: relative;
}

.about-title::after {
  content: '';
  display: block;
  width: 76px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.about-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,245,255,0.95));
  border-radius: 30px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
  padding: 48px 42px;
  margin-bottom: 30px;
}

.about-section h2 {
  font-size: 32px;
  margin-bottom: 22px;
  color: #1e40af;
  text-align: center;
}

.about-section p {
  max-width: 760px;
  margin: 0 auto 18px;
  color: #334155;
  line-height: 1.85;
  text-align: center;
  font-size: 1.03rem;
}

.values-list {
  display: grid;
  gap: 14px;
  margin: 30px auto 0;
  max-width: 760px;
  padding-left: 0;
  list-style: none;
}

.values-list li {
  position: relative;
  padding: 18px 22px 18px 62px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.08);
  color: #0f172a;
  line-height: 1.8;
  font-size: 1rem;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.features-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 32px;
  align-items: stretch;
  text-align: center;
}

.feature-box {
  padding: 30px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 24px 55px rgba(37, 99, 235, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(37, 99, 235, 0.16);
}

.feature-box h3 {
  margin-bottom: 16px;
  color: #1d4ed8;
  font-size: 1.2rem;
}

.feature-box p {
  color: #475569;
  line-height: 1.85;
  font-size: 1rem;
  margin-top: 8px;
  flex-grow: 1;
}

.feature-box p:last-child {
  margin-bottom: 0;
}

.cta-box {
  margin: 40px auto 90px;
  padding: 44px 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.25);
}

.cta-box h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
}

.cta-box p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.8;
  font-size: 1.02rem;
  margin-bottom: 30px;
}
.gtc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  .card-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.card-item {
  width: 160px;
  height: 160px;
  background: #a64d57;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.card-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .about-section {
    padding: 38px 28px;
  }

  .feature-box {
    min-height: auto;
  }

  .features-layout {
    gap: 22px;
  }
  .gtc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
   .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-title {
    margin-top: 80px;
    font-size: 26px;
  }

  .about-section {
    padding: 28px 18px;margin: 20px;
  }

  .about-section h2 {
    font-size: 24px;
  }

  .about-section p {
    max-width: 100%;
    padding: 0;
    text-align: left;
    font-size: 1rem;
  }

  .values-list {
    width: 100%;
    max-width: 100%;
    margin: 24px 0 0;
    gap: 12px;
  }

  .values-list li {
    padding: 18px 18px 18px 56px;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .values-list li::before {
    left: 18px;
    width: 30px;
    height: 30px;
  }

  .features-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-box {
    padding: 24px 20px;
  }

  .cta-box {
    padding: 32px 24px;
  }
  .gtc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  .card-container {
    gap: 20px;
    justify-content: center;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 👈 2 products per row */
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 24px;
  }

  .about-section h2,
  .cta-box h2 {
    font-size: 24px;
  }

  .about-section p,
  .feature-box p,
  .cta-box p {
    text-align: left;
  }
  .gtc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 👈 2 products per row */
  }
  .gtc {
    grid-template-columns: repeat(2, 1fr); /* 👈 2 cards */
    gap: 10px;
  }

  .product-image {
    height: 110px;
  }

  .product-body h3 {
    font-size: 13px;
  }

  .product-body p {
    font-size: 11px;
  }

  .price {
    font-size: 12px;
  }
}

/* Section Styling */
.content-section {
  padding: 40px 20px 0px;
  margin: 0 auto;
  text-align: left;
}

.content-section h2 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  margin-bottom: 20px;
  text-align: center;
  color: #2563eb;
}

.content-section-a p {
  margin: 0 auto 18px;
  color: #334155;
  line-height: 1.9;
  text-align: center;
}

.content-section p {
  margin: 0 auto 18px;
  color: #334155;
  line-height: 1.9;
  text-align: left;
}

.content-section p + p {
  margin-top: 8px;
}

.content-section ul {
  max-width: 760px;
  margin: 25px auto 0;
  padding-left: 0;
}

.content-section ul li {
  text-align: left;
}

.content-section strong {
  color: #0f172a;
}

.recommendation-section {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
  text-align: center;
}

.recommendation-section h2,
.recommendation-section p {
  color: white;
}

.recommendation-section p {
  max-width: 720px;
  margin: 0 auto 25px;
}

.recommendation-section .fast-quote-btn {
  background: white;
  color: #1e40af;
  padding: 14px 34px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  margin: 0 auto;
}

.recommendation-section .fast-quote-btn:hover {
  background: #eef2ff;
  transform: translateY(-2px);
}

.newsletter-section {
  background: var(--light-bg);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  padding: 50px 30px;
  text-align: center;
}

.newsletter-section h2 {
  margin-bottom: 15px;
  color: #0f172a;
}

.newsletter-section p {
  color: #475569;
  max-width: 680px;
  margin: 0 auto 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1 1 260px;
  min-width: 240px;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  color: #0f172a;
  background: white;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.newsletter-button {
  flex: 0 0 auto;
  padding: 14px 30px;
  border: none;
  border-radius: 10px;
  background: var(--primary-color);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-button:hover {
  background: #1e40af;
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

/* Feature Card */
.feature-card {
  padding: 25px;
  border-radius: 16px;

  /* Glass Effect */
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* Shadow */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Smooth Animation */
  transition: all 0.3s ease;

  text-align: left;
}

/* Title */
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Text */
.feature-card p {
  font-size: 14px;
  color: #ddd;
}

.about-values {
  margin: 0 auto 20px;
  max-width: 760px;
  padding-left: 0;
  list-style: none;
  color: var(--text-dark);
}

.about-values li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 32px;
  line-height: 1.75;
  color: var(--text-dark);
}

.about-values li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.about-card {
  padding: 24px;
  background: #f0f4ff;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

.about-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.about-card p {
  color: var(--text-dark);
  line-height: 1.7;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.product-image {
  width: 100%;
  height: 240px;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid #e2e8f0;
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.3px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.product-price {
  margin: 12px 0 10px;
  font-size: 1.35rem;
  color: #2563eb;
  font-weight: 800;
}

.product-body p {
  margin: 0;
  color: #64748b;
  line-height: 1.5;
  font-size: 0.9rem;
}

.product-card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.quick-add-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0 0 12px 12px;
  margin-top: auto;
}

.quick-add-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.quick-add-btn:active {
  transform: translateY(0);
}

.quick-add-btn.success {
  background: #16a34a;
}

/* ==========================================
   NEWS STYLES
   ========================================== */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 20px;
  align-items: stretch;
  grid-auto-rows: minmax(1fr, auto);
}

.news-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  height: 100%;
}

.news-image {
  width: 100%;
  height: 220px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.news-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(37, 99, 235, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.news-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-body h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-body p {
  margin: 0 0 auto;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  display: -webkit-box;
  
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.read-more {
  color: #2563eb;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-date {
  color: #94a3b8;
  font-size: 0.8rem;
}

/* News Detail Page */
.news-detail-section {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.back-link {
  display: inline-block;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #1e40af;
}

.news-detail-header {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  height: 500px;
}

.news-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-detail-image--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
  color: #475569;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-detail-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.news-detail-badge {
  background: rgba(37, 99, 235, 0.95);
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.news-detail-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-detail-content h1 {
  font-size: 2.5rem;
  color: #1e293b;
  margin: 0 0 20px;
  line-height: 1.3;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.news-detail-date {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
}

.news-detail-body {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.news-detail-body p {
  margin: 0 0 20px;
}

.news-detail-body p:last-child {
  margin-bottom: 0;
}

.news-detail-footer {
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.news-detail-footer h3 {
  color: #1e293b;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.share-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

/* Related Articles */
.related-articles {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.related-articles h2 {
  font-size: 1.8rem;
  color: #1e293b;
  margin-bottom: 30px;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.related-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.related-image {
  width: 100%;
  height: 180px;
  background-position: center;
  background-size: cover;
}

.related-body {
  padding: 16px;
}

.related-body h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #1e293b;
  line-height: 1.4;
}

.related-date {
  color: #94a3b8;
  font-size: 0.8rem;
  margin: 0;
}

/* Responsive News */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 15px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-detail-content {
    padding: 30px;
  }

  .news-detail-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 12px;
  }

  .news-image {
    height: 200px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-detail-header {
    height: 400px;
    margin-bottom: 30px;
  }

  .news-detail-content {
    padding: 25px;
    margin-bottom: 40px;
  }

  .news-detail-content h1 {
    font-size: 1.8rem;
  }

  .news-detail-body {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 10px;
  }

  .news-image {
    height: 180px;
  }

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

  .news-detail-header {
    height: 350px;
    margin-bottom: 25px;
  }

  .news-detail-content {
    padding: 20px;
    margin-bottom: 40px;
  }

  .news-detail-content h1 {
    font-size: 1.6rem;
  }

  .news-detail-body {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }

  .news-image {
    height: 200px;
  }

  .news-body {
    padding: 16px;
  }

  .news-body h3 {
    font-size: 1rem;
  }

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

  .news-detail-header {
    height: 300px;
    margin-bottom: 20px;
  }

  .news-detail-content {
    padding: 16px;
    margin-bottom: 30px;
  }

  .news-detail-content h1 {
    font-size: 1.4rem;
  }

  .news-detail-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================
   FAQ STYLES
   ========================================== */

.faq-title {
  font-size: 36px;
  color: #0f172a;
  margin: 100px auto 40px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  position: relative;
}

.faq-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.faq-section {
  margin: 50px auto;
  padding: 0 20px;
}

.faq-section h2 {
  font-size: 32px;
  color: #1e40af;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(37, 99, 235, 0.15);
}

.faq-item {
  margin-bottom: 18px;
}

.faq-item[open] .faq-question {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(56, 189, 248, 0.08));
  color: #1e40af;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.96));
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.06);
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: #0f172a;
  list-style: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
}

.faq-question:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.24);
}

.faq-question::after {
  content: '▼';
  font-size: 0.8rem;
  color: #2563eb;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  padding: 24px 26px;
  background: rgba(241, 245, 255, 0.5);
  border-radius: 0 0 18px 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-top: none;
  color: #334155;
  line-height: 1.85;
  font-size: 1rem;
  margin-top: -1px;
}

/* Remove default summary styling */
.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

@media (max-width: 992px) {
  .faq-section {
    max-width: 100%;
  }

  .faq-question {
    padding: 20px 22px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 20px 22px;
  }
}

@media (max-width: 768px) {
  .faq-title {
    margin-top: 70px;
    margin-bottom: 30px;
  }

  .faq-section {
    margin: 38px auto;
    padding: 0 16px;
  }

  .faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .faq-item {
    margin-bottom: 16px;
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 0.95rem;
    border-radius: 14px;
  }

  .faq-answer {
    padding: 18px 18px;
    border-radius: 0 0 14px 14px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 2rem;
    margin-top: 60px;
  }

  .faq-section h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 16px 14px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 16px 14px;
    font-size: 0.9rem;
  }

  .faq-question::after {
    font-size: 0.7rem;
    margin-left: 12px;
  }
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

footer {
  background: var(--dark-bg);
  color: #cbd5e1;
  padding: 50px 20px 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.footer-section ul {
      list-style: none;
    padding-left: 0;
}

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

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
  font-size: 18px;
  line-height: 30px;
}

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

.contact-info {
  color: #cbd5e1;
  font-size: 14px;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-title {
  font-size: 36px;
  color: #0f172a;
  margin: 100px auto 30px;
  text-align: center;
  max-width: 900px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 0 auto 42px;
 /* max-width: 1140px; */
  padding: 0 20px;
}

.contact-card {
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 30px;
  padding: 32px 26px;
  box-shadow: 0 30px 75px rgba(37, 99, 235, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 260px;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 95px rgba(37, 99, 235, 0.15);
}

.contact-card .icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(56, 189, 248, 0.25));
  font-size: 1.5rem;
}

.contact-card h3 {
  font-size: 1.2rem;
  color: #1e40af;
  margin-bottom: 10px;
}

.contact-card p {
  color: #475569;
  line-height: 1.95;
}

.contact-section {
  margin: 0 auto 50px;
  padding: 0 20px;
}

.contact-section h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: #0f172a;
  margin-bottom: 28px;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 24px;
  padding: 36px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  border-radius: 34px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  font-weight: 600;
  color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f4f8ff;
  color: #0f172a;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.12);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: #eef4ff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
}

.form-check label {
  margin: 0;
  color: #334155;
  font-size: 0.98rem;
}

.submit-btn {
  width: fit-content;
  padding: 16px 36px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  align-self: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.2);
}

.contact-cta {
  max-width: 960px;
  margin: 0 auto 90px;
  padding: 44px 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: white;
  text-align: center;
  box-shadow: 0 30px 90px rgba(37, 99, 235, 0.24);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 40%);
  pointer-events: none;
}

.contact-cta h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.contact-cta p {
  max-width: 760px;
  margin: 0 auto 26px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.contact-cta-button {
  padding: 16px 36px;
  border-radius: 999px;
  border: none;
  background: white;
  color: #2563eb;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
}

.contact-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    padding: 30px;
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    padding: 28px;
  }

  .contact-cta {
    padding: 32px 22px;
  }
  
}

@media (max-width: 580px) {
  .contact-title {
    font-size: 24px;
    margin-top: 70px;
  }

  .contact-card {
    padding: 24px 20px;
    max-width: 310px;
  }
  
  .contact-card p {
    font-size: 0.85rem;
  }

  .contact-card .icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 22px;
    gap: 18px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.98rem;
  }

  .contact-cta {
    padding: 26px 18px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-left: 10px;
        margin-right: 10px;
  }

  .product-image {
    height: 100px;
  }

  .product-body h3 {
    font-size: 13px;
  }

  .product-price {
    font-size: 12px;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

.page-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 120px 24px 60px;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: clamp(2.4rem, 4vw, 1.4rem);
  color: var(--text-dark);
  margin-bottom: 14px;
}

.page-header p {
  max-width: 760px;
  margin: 0 auto;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.85;
}

.page-section {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 34px 36px;
  margin-bottom: 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.page-section h2 {
  color: var(--text-dark);
  margin-bottom: 18px;
  font-size: 1.55rem;
}

.page-section p,
.page-section ul {
  color: #475569;
  font-size: 14px;
  line-height: 30px;
}

.page-section ul {
  padding-left: 20px;
  margin-top: 16px;
}

.page-section ul li {
  margin-bottom: 12px;
}

.premium-page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 120px 24px 60px;
}

.premium-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #ffffff;
  border-radius: 36px;
  padding: 48px;
  box-shadow: 0 35px 80px rgba(37, 99, 235, 0.18);
}

.premium-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.02;
  margin-bottom: 20px;
}

.premium-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.85;
  font-size: 1.05rem;
}

.premium-hero .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.premium-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 600;
}

.premium-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.premium-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.14);
}

.premium-card h3 {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.premium-card p {
  color: #64748b;
  line-height: 1.9;
}

.premium-card .price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 22px 0 18px;
}

.premium-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.18);
}

@media (max-width: 1024px) {
  .premium-hero {
    grid-template-columns: 1fr;
  }

  .premium-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .page-content {
    padding: 100px 18px 50px;
  }

  .page-section {
    padding: 28px 22px;
  }
}

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

/* ================= INFO ================= */
.info-block {
  text-align: center;
}

.info-block h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

.info-block p {
  margin: 15px auto;
  color: #ffffff;
  line-height: 1.7;
}

/* ================= GRID ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding-top: 40px;
}

/* ================= CARD ================= */
.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;

  border: 1px solid #e2e8f0;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* subtle gradient top line */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

/* Hover */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Text */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2563eb;
}

.service-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

/* ================= CTA ================= */
.cta-btn {
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  background: #fff;
  color: #2563eb;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

/* Hover */
.cta-btn:hover {
  background: #1e40af;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .info-block h2 {
    font-size: 26px;
  }

  .services-grid {
    padding: 20px;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    padding: 15px;
  }
}

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

/* ==========================================
   RESPONSIVE DESIGN - MOBILE MENU TOGGLE
   ========================================== */

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    border-left: 1px solid var(--border-color);
    margin: 0;
    z-index: 999;
    padding-top: 80px;
    overflow-y: auto;
  }

  nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  nav li {
    border-bottom: 1px solid var(--border-color);
  }

  nav a {
    display: block;
    padding: 15px 20px;
    border: none;
  }

  nav a::after {
    display: none;
  }

  nav a.active {
    background: rgba(37, 99, 235, 0.1);
    border-left: 4px solid var(--red-accent);
    padding-left: 16px;
  }

  

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 38px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
  }

  .logo > div {
    width: 40px;
    height: 40px;
  }

  .logo > span {
    font-size: 18px;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .header-right {
    gap: 12px;
    min-width: auto;
  }

  .fast-quote-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .search-icon {
    width: 36px;
    height: 36px;
  }


  .hero-section {
    min-height: auto;
    padding: 30px 15px;
  }

  .hero-glass {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-content {
    padding: 30px;
    border-radius: 16px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons a {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
  }

  .hero-illustration {
    padding: 16px;
    padding: 16px;
    border-radius: 24px;
  }

  .hero-illustration img {
    max-width: 100%;
    border-radius: 18px;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .page-title {
    font-size: 28px;
  }

  .content-section {
    padding: 25px;
  }

  .content-section h2 {
    font-size: 22px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-section a {
    padding-left: 0 !important;
  }
  
}

@media (max-width: 480px) {
  .header-container {
    height: 60px;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  main {
    margin-top: 60px;
  }

  .logo {
    gap: 6px;
  }

  .logo > div {
    width: 35px;
    height: 35px;
  }

  .logo > span {
    font-size: 16px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .fast-quote-btn {
    display: none;
  }

  .hero-section h1 {
    font-size: 24px;
  }

  .hero-section p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons a {
    padding: 10px 18px;
    font-size: 13px;
    width: 100%;
  }

  .page-title {
    font-size: 24px;
  }

  .content-section {
    padding: 20px;
  }
}
.testimonial-section {
  padding: 50px 20px;
  background: #f8fafc;
  text-align: center;
  overflow: hidden;
}

.testimonial-section h2 {
  margin-bottom: 30px;
}

/* Slider */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

/* Track */
.testimonial-track {
  display: flex;
  width: calc(250px * 8); /* duplicate cards for smooth loop */
  animation: scroll 20s linear infinite;
}

/* Card */
.testimonial-card {
  min-width: 250px;
  margin: 0 10px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: left;
}

.testimonial-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.testimonial-card span {
  color: gold;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

/* Mobile */
@media (max-width: 576px) {
  .testimonial-card {
    min-width: 200px;
  }
   .image-section {
    flex-direction: column;
    padding: 20px;
  }

  .image-container img {
    height: 200px;
  }

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

/* SECTION */
.split-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 50px;
  background: #ffffff;
}

/* LEFT TEXT */
.split-text {
  flex: 1;
}

.split-text h2 {
  font-size: 30px;
  color: #2563eb;
  margin-bottom: 15px;
}

.split-text p {
  font-size: 18px;
  color: #475569;
  line-height: 30px;
  margin-bottom: 10px;
}
ul.services-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 15px;
}
ul.services-list li {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 10px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  background: #2563eb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #1e40af;
}

/* RIGHT IMAGE */
.split-image {
  flex: 1;
}

.split-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
    padding: 20px;
  }

  .split-image img {
    height: 410px;
  }

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

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0;
}

/* Pagination button */
.page-btn {
  padding: 10px 15px;
  background: black;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
}

.page-btn.disabled {
  background: #666;
  cursor: default;
}


.news-detail-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.news-detail-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.news-detail-date {
  color: gray;
  margin-bottom: 20px;
}

.news-detail-image {
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
}

.news-detail-content {
  font-size: 1.05rem;
  line-height: 1.9;
}

.news-detail-content p {
  margin-bottom: 15px;
}

.news-detail-content h2 {
  margin-top: 20px;
}

.back-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 15px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.back-btn:hover {
  background: #444;
}
.cart-item {
  position: relative !important;
}
.remove-from-cart-btn {
  padding: 6px 12px;
  background: #e53e3e;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  position: absolute;
  right: 10px;
  bottom: 10px !important;
  width: 150px !important;
}
.title {
      font-family: roboto;
    font-size: 22px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    text-align: left;
    border-bottom: 2px solid #1c52b7;
    padding-bottom: 10px;
    margin-bottom: 20px;
    background: linear-gradient(115deg, #8dade8, #86a8e7, #5ffbf1);
    padding: 15px 40px 15px 15px;
}
.form-control {
  margin-bottom: 20px;
}
textarea.form-control {
  height: 180px;
}

/* =========================
   Responsive Media Queries
========================= */

/* Tablets */
@media (max-width: 992px) {

  .hero-section {
    min-height: auto;
    padding: 80px 20px;
    background-attachment: scroll;
  }

  .hero-glass {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-content {
    padding: 40px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    text-align: center;
  }

  .hero-content p {
    text-align: center;
  }

  .hero-content .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {

  .hero-section {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 60px 15px;
  }

  .hero-glass {
    margin: 0;
  }

  .hero-content {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-content .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .hero-content .hero-buttons a,
  .hero-content .hero-buttons button {
    width: 100%;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .hero-section {
    padding: 50px 12px;
  }

  .hero-content {
    padding: 25px 15px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}