/* SmartBizTools - Navy & Gold Theme */
:root {
  --navy: #0a1d3a;
  --navy-light: #142b5c;
  --gold: #d4a017;
  --gold-light: #f4c542;
  --cream: #fdf6e3;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #6b7280;
  --text: #1a1a1a;
}

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

body {
  font-family: 'Poppins', -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--navy); }

a { text-decoration: none; color: inherit; }

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

/* HEADER */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img { height: 130px; }
@media (max-width: 768px) {
  .logo img { height: 70px; }
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: var(--navy); font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.menu-toggle { display: none; background: none; border: none; font-size: 28px; color: var(--navy); cursor: pointer; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; opacity: 0.95; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s;
  border: 2px solid var(--gold);
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--gold); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* SECTIONS */
section { padding: 80px 20px; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 15px; }
.section-subtitle { text-align: center; color: var(--gray); max-width: 600px; margin: 0 auto 50px; font-size: 1.1rem; }
.gold-line {
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* PRODUCT GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 4px 20px rgba(10,29,58,0.08);
  border-top: 4px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(10,29,58,0.15); }
.product-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  color: var(--navy);
}
.product-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.product-card .tagline { color: var(--gold); font-weight: 600; margin-bottom: 15px; }
.product-card p { color: var(--gray); margin-bottom: 20px; }
.product-card .btn { padding: 10px 24px; font-size: 0.95rem; }

/* FEATURE LIST */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  line-height: 24px;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  border: 2px solid #eee;
  transition: all 0.3s;
}
.price-card.featured { border-color: var(--gold); transform: scale(1.05); position: relative; }
.price-card.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.price-card h4 { color: var(--navy); margin-bottom: 10px; }
.price { font-size: 2.5rem; color: var(--gold); font-weight: 700; margin: 15px 0; font-family: 'Playfair Display', serif; }
.price small { font-size: 1rem; color: var(--gray); }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-grid h2 { text-align: left; font-size: 2.2rem; margin-bottom: 20px; }
.about-img { text-align: center; }
.about-img img { max-width: 280px; border-radius: 50%; box-shadow: 0 10px 40px rgba(212,160,23,0.3); }

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info h3 { color: var(--navy); margin-bottom: 25px; font-size: 1.8rem; }
.contact-info p { margin-bottom: 18px; padding-left: 35px; position: relative; }
.contact-info .icon {
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
}
form .form-row { margin-bottom: 18px; }
form label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
form input, form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}
form input:focus, form textarea:focus { outline: none; border-color: var(--gold); }
form textarea { min-height: 130px; resize: vertical; }

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  text-align: center;
  padding: 60px 20px;
}
.cta-strip h2 { color: var(--navy); margin-bottom: 15px; }
.cta-strip .btn { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cta-strip .btn:hover { background: transparent; color: var(--navy); }

/* FOOTER */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 50px 20px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px;
}
.footer-grid h4 { color: var(--gold); margin-bottom: 18px; font-family: 'Poppins', sans-serif; font-size: 1.1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: #cbd5e0; transition: color 0.3s; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid p { color: #cbd5e0; line-height: 1.8; }
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: #94a3b8;
  font-size: 0.9rem;
}

/* PRODUCT PAGE HERO */
.product-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 70px 20px;
  text-align: center;
}
.product-hero h1 { color: var(--white); font-size: 3rem; }
.product-hero .tagline { color: var(--gold); font-size: 1.3rem; margin: 10px 0 20px; }

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card .blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}
.blog-card .blog-content { padding: 20px; }
.blog-card .date { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.blog-card h3 { font-size: 1.3rem; margin: 10px 0; }
.blog-card p { color: var(--gray); font-size: 0.95rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 15px;
  }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .price-card.featured { transform: none; }
  section { padding: 60px 20px; }
  .hero { padding: 60px 20px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .hero h1 { font-size: 2rem; }
  .product-hero h1 { font-size: 2rem; }
}
