/* Local layout styles for the Tobacco Tax Reporting subpage */

.tobacco-page-content {
  --color-primary: #7A4F7A;      /* Brand Purple */
  --color-primary-hover: #633c63;
  --color-secondary: #F5A623;    /* Brand Gold */
  
  min-height: calc(100vh - 200px); /* Keeps footer at bottom when page is empty */
  background-color: #F9FAFB;
}

/* BREADCRUMBS */
.breadcrumbs-section {
  background-color: #FFFFFF;
  padding: 24px 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.breadcrumbs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
}

.breadcrumb-item {
  color: #4a7ab5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item:hover:not(.active) {
  color: #2b6cb0;
}

.breadcrumb-separator {
  color: #7A4F7A;
  user-select: none;
  font-size: 13.5px;
  margin: 0 4px;
}

.breadcrumb-item.active {
  color: #7A4F7A;
  font-weight: 600;
  pointer-events: none;
}

/* HERO SECTION styling */
.tobacco-hero-section {
  position: relative;
  width: 100%;
  padding: 100px 24px 110px 24px;
  background-image: linear-gradient(135deg, #4592A3 0%, #589DAD 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
}

.tobacco-hero-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  color: #FFFFFF;
}

.tobacco-hero-title {
  font-family: 'Kalam', cursive;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 32px 0;
  letter-spacing: -0.5px;
}

.tobacco-hero-desc-1 {
  font-family: 'Kalam', cursive;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0 auto 28px auto;
  max-width: 800px;
  font-weight: 400;
}

.tobacco-hero-desc-2 {
  font-family: 'Kalam', cursive;
  font-size: 19px;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0 auto 40px auto;
  max-width: 860px;
  font-weight: 400;
}

.tobacco-hero-desc-2 strong {
  font-weight: 700;
}

/* BUTTONS */
.tobacco-hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tobacco-btn-primary,
.tobacco-btn-secondary {
  display: inline-block;
  font-family: 'Kalam', cursive;
  font-size: 19px;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 8px;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 190px;
  text-align: center;
}

.tobacco-btn-primary {
  background-color: #FFFFFF;
  color: #4592A3;
  border: 2px solid #FFFFFF;
}

.tobacco-btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.tobacco-btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.tobacco-btn-secondary:hover {
  background-color: #FFFFFF;
  color: #4592A3;
  transform: translateY(-2px);
}

/* SECTION LAYOUTS */
.tobacco-section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.tobacco-section-title {
  font-family: 'Kalam', cursive;
  font-size: 36px;
  font-weight: 700;
  color: #33879A;
  text-align: center;
  margin: 0 0 16px 0;
}

.tobacco-section-subtitle {
  font-family: 'Kalam', cursive;
  font-size: 18px;
  font-style: italic;
  color: #4B5563;
  text-align: center;
  margin: 0 auto 50px auto;
  max-width: 850px;
  line-height: 1.5;
}

/* SECTION 1: Why Automation */
.tobacco-why-section {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.tobacco-why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: flex-start;
}

.tobacco-why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tobacco-why-item {
  display: flex;
  gap: 20px;
}

.tobacco-why-icon-wrapper {
  font-size: 26px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.tobacco-why-text h3 {
  font-family: 'Kalam', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 6px 0;
}

.tobacco-why-text p {
  font-family: 'Kalam', cursive;
  font-size: 16px;
  color: #4B5563;
  line-height: 1.5;
  margin: 0;
}

.tobacco-why-callout {
  background-color: #F1F5F9;
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid #33879A;
  box-sizing: border-box;
}

.tobacco-why-callout p {
  font-family: 'Kalam', cursive;
  font-size: 18px;
  font-style: italic;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

/* SECTION 2: Challenges */
.tobacco-challenges-section {
  background-color: #F9FAFB;
  padding: 80px 0;
}

.tobacco-challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tobacco-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tobacco-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.tobacco-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.tobacco-card-icon.red-icon { color: #EF4444; }
.tobacco-card-icon.pink-icon { color: #EC4899; }
.tobacco-card-icon.orange-icon { color: #F5A623; }
.tobacco-card-icon.purple-icon { color: #8B5CF6; }
.tobacco-card-icon.blue-icon { color: #3B82F6; }
.tobacco-card-icon.gold-icon { color: #D97706; }

.tobacco-card h3 {
  font-family: 'Kalam', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 10px 0;
}

.tobacco-card p {
  font-family: 'Kalam', cursive;
  font-size: 16px;
  font-style: italic;
  color: #4B5563;
  line-height: 1.5;
  margin: 0;
}

/* SECTION 3: Benefits */
.tobacco-benefits-section {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.tobacco-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tobacco-benefit-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tobacco-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.tobacco-benefit-icon {
  font-size: 32px;
  color: #7A4F7A; /* Purple theme */
  margin-bottom: 16px;
}

.tobacco-benefit-card h3 {
  font-family: 'Kalam', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 10px 0;
}

.tobacco-benefit-card p {
  font-family: 'Kalam', cursive;
  font-size: 16px;
  font-style: italic;
  color: #4B5563;
  line-height: 1.5;
  margin: 0;
}

.tobacco-benefits-footer {
  font-family: 'Kalam', cursive;
  font-size: 18px;
  color: #4B5563;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 50px auto 0 auto;
}

/* SECTION 4: Deep Dive & MSA */
.tobacco-deepdive-section {
  background-color: #F9FAFB;
  padding: 80px 0;
}

.tobacco-deepdive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.tobacco-deepdive-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 40px 36px;
  text-align: left;
  box-sizing: border-box;
}

.tobacco-deepdive-card h3 {
  font-family: 'Kalam', cursive;
  font-size: 24px;
  font-weight: 700;
  color: #7A4F7A;
  margin: 0 0 16px 0;
}

.state-intro {
  font-family: 'Kalam', cursive;
  font-size: 16px;
  color: #4B5563;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.state-helps {
  font-family: 'Kalam', cursive;
  font-size: 16px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 12px 0;
}

.state-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.state-bullets li {
  font-family: 'Kalam', cursive;
  font-size: 16px;
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 10px;
}

.state-bullets li i {
  color: #4592A3;
  font-size: 16px;
  flex-shrink: 0;
}

.tobacco-msa-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  box-sizing: border-box;
}

.tobacco-msa-card h3 {
  font-family: 'Kalam', cursive;
  font-size: 24px;
  font-weight: 700;
  color: #7A4F7A;
  margin: 0 0 16px 0;
}

.msa-intro {
  font-family: 'Kalam', cursive;
  font-size: 16px;
  font-weight: 700;
  color: #4B5563;
  max-width: 800px;
  margin: 0 auto 16px auto;
  line-height: 1.5;
}

.msa-helps {
  font-family: 'Kalam', cursive;
  font-size: 16px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 32px 0;
}

.tobacco-msa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tobacco-msa-item {
  text-align: center;
}

.tobacco-msa-icon {
  font-size: 32px;
  color: #7A4F7A;
  margin-bottom: 12px;
}

.tobacco-msa-item p {
  font-family: 'Kalam', cursive;
  font-size: 15px;
  color: #4B5563;
  line-height: 1.4;
  margin: 0;
}

/* SECTION 5: Why Choose OdooVizion */
.tobacco-choose-section {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.tobacco-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.tobacco-choose-item {
  text-align: center;
}

.tobacco-choose-icon {
  font-size: 40px;
  color: #7A4F7A; /* Purple Theme */
  margin-bottom: 12px;
}

.tobacco-choose-item h3 {
  font-family: 'Kalam', cursive;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #1F2937;
  margin: 0;
  line-height: 1.4;
}

.tobacco-choose-footer {
  font-family: 'Kalam', cursive;
  font-size: 18px;
  font-style: italic;
  color: #4B5563;
  text-align: center;
  max-width: 850px;
  margin: 40px auto 0 auto;
  line-height: 1.5;
}

/* SECTION 6: Let's Simplify Tax Compliance */
.tobacco-compliance-section {
  background-color: #F9FAFB;
  padding: 80px 0;
}

.tobacco-compliance-text {
  font-family: 'Kalam', cursive;
  font-size: 18px;
  font-style: italic;
  color: #4B5563;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 12px auto;
  line-height: 1.5;
}

.tobacco-btn-outline {
  display: inline-block;
  font-family: 'Kalam', cursive;
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
  padding: 12px 36px;
  border-radius: 8px;
  text-decoration: none;
  background-color: transparent;
  border: 2px solid #33879A;
  color: #33879A;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 200px;
  text-align: center;
}

.tobacco-btn-outline:hover {
  background-color: #33879A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .tobacco-hero-title {
    font-size: 44px;
  }
  .tobacco-hero-desc-1 {
    font-size: 20px;
  }
  .tobacco-hero-desc-2 {
    font-size: 18px;
  }
  .tobacco-section-title {
    font-size: 32px;
  }
  .tobacco-section-subtitle {
    font-size: 17px;
    margin-bottom: 40px;
  }
  .tobacco-why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tobacco-challenges-grid,
  .tobacco-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .tobacco-deepdive-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tobacco-msa-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .tobacco-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .tobacco-hero-section {
    padding: 70px 20px 80px 20px;
  }
  .tobacco-hero-title {
    font-size: 34px;
    margin-bottom: 24px;
  }
  .tobacco-hero-desc-1 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .tobacco-hero-desc-2 {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .tobacco-hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .tobacco-btn-primary,
  .tobacco-btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  .tobacco-section-title {
    font-size: 28px;
  }
  .tobacco-section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .tobacco-why-section,
  .tobacco-challenges-section,
  .tobacco-benefits-section,
  .tobacco-deepdive-section,
  .tobacco-choose-section,
  .tobacco-compliance-section {
    padding: 60px 0;
  }
  .tobacco-why-callout {
    padding: 28px;
  }
  .tobacco-challenges-grid,
  .tobacco-benefits-grid {
    grid-template-columns: 1fr;
  }
  .tobacco-msa-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tobacco-msa-card,
  .tobacco-deepdive-card {
    padding: 28px 20px;
  }
  .tobacco-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}




