/* -----------------------------------
   ROOT VARIABLES
----------------------------------- */
:root {
  --primary: #e41e26;

  /* Main website secondary */
  --secondary: #002b45;

  /* Download page secondary */
  --secondary-download: #1a3850;

  --light: #f9fafc;
  --gray: #6b7280;
  --dark: #1a1a1a;
  --max-width: 1200px;
  --gradient: linear-gradient(135deg, #e41e26, #c91b22);
}

/* -----------------------------------
   GLOBAL RESET
----------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* -----------------------------------
   HEADER + NAVBAR
----------------------------------- */
header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
}

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

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

nav a {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--secondary);
  background: #f3f4f6;
  transition: all 0.3s ease;
}

nav a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(228,30,38,0.3);
}

.cta-btn {
  background: var(--gradient);
  color: #050505 !important;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(8, 0, 0, 0.3);
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: var(--secondary);
  transform: scale(1.05);
}

/* -----------------------------------
   INDEX PAGE HERO (Banner Style)
----------------------------------- */
.hero-index {
  position: relative;
  height: 90vh;
  background:
    linear-gradient(115deg, rgba(0,25,45,0.92), rgba(5,30,55,0.92)),
    url('https://images.unsplash.com/photo-1581093588401-22d8a4bdfb48?auto=format&fit=crop&w=1500&q=80')
    center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-index h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-index p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-index a {
  display: inline-block;
  background: #ffffff;
  color: #000000;            /* BLACK TEXT */
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  border: 2px solid #000;    /* Clean border look */
}

.hero-index a:hover {
  background: #000000;       /* BLACK BG ON HOVER */
  color: #ffffff;            /* WHITE TEXT ON HOVER */
  transform: translateY(-3px);
}


/* -----------------------------------
   DOWNLOAD PAGE HERO (Simple)
----------------------------------- */
.hero-download {
  background:
    linear-gradient(135deg,
      rgba(0,43,69,0.85) 0%,
      rgba(26,56,80,0.85) 40%,
      rgba(228,30,38,0.85) 100%
    ),
    url("https://turbotax.intuit.com/efs/turbotax/images/hero-desktop.jpg")
    center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero-download h1 {
  font-size: 2.7rem;
  margin-bottom: 15px;
}

.hero-download p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-download a {
  background: var(--primary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.hero-download a:hover {
  background: #c80000;
}

/* -----------------------------------
   CLEAN BODY CONTENT FOR INDEX PAGE
----------------------------------- */

/* Container layout */
.container {
  max-width: var(--max-width);
  margin: 80px auto;
  padding: 0 25px;
}

/* Unified section spacing */
.section {
  margin: 80px auto;
}

/* Section headings */
.section h2,
.container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--secondary);
}

/* Simple body text */
.section p,
.container p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* List styling */
.section ul,
.container ul {
  margin: 20px 0;
  padding-left: 20px;
}

.section li,
.container li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Improve card layout for index page */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Always 2 columns on desktop */
  gap: 30px;
  margin-top: 30px;
}

/* 1 column on mobile */
@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  border-top: 4px solid var(--primary);
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
  transition: 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-7px);
}

.card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

/* Index-only highlight box */
.index-info-box {
  background: #fef7f7;
  border-left: 4px solid var(--primary);
  padding: 20px 25px;
  border-radius: 10px;
  margin-top: 25px;
}

/* Index CTA button */
.index-cta {
  display: inline-block;
  background: var(--primary);
  padding: 12px 32px;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
}

.index-cta:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}


/* -----------------------------------
   DOWNLOAD SECTION BOX
----------------------------------- */
.download-section {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-top: 60px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.download-section h2 {
  color: var(--primary);
}

.download-section a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.download-section a:hover {
  text-decoration: underline;
}

.steps li {
  margin-bottom: 10px;
}

/* -----------------------------------
   PREMIUM FOOTER
----------------------------------- */
.pro-footer {
  background: #0d0d0d;            /* Smooth dark background */
  padding: 45px 0;
  text-align: center;
  width: 100%;
  border-top: 1px solid #2a2a2a;  /* Elegant top border */
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

.footer-links {
  display: inline-flex;
  gap: 40px;                      /* Perfect spacing */
}

.footer-link {
  color: #ffffff;
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s ease;
}

/* Premium Hover underline animation */
.footer-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #4cc9f0;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-link:hover {
  color: #4cc9f0;
}

body {
  background: #f5f5f5;
}

