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

:root {
  --navy-dark: #0b132b;
  --navy-mid: #1c2541;
  --navy-light: #3a506b;
  --safety-blue: #1d4ed8;
  --safety-blue-hover: #1e40af;
  --safety-blue-light: #eff6ff;
  --cyan-accent: #06b6d4;
  --cyan-light: #ecfeff;
  --teal-dark: #0f766e;
  --amber-accent: #f59e0b;
  --amber-hover: #d97706;
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 35px rgba(15, 23, 42, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-dark);
  line-height: 1.25;
  font-weight: 700;
}

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

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

ul {
  list-style: none;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 19, 43, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  padding: 0.85rem 0;
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: var(--transition);
}

.brand-logo i {
  color: var(--cyan-accent);
  font-size: 1.75rem;
  filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.6));
  transition: var(--transition);
}

.brand-logo:hover i {
  transform: scale(1.1) rotate(-5deg);
}

.brand-logo span {
  color: var(--cyan-accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-link {
  color: var(--gray-200);
  font-weight: 500;
  font-size: 0.925rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  border: 1px solid transparent;
}

.nav-link i {
  font-size: 0.875rem;
  color: var(--cyan-accent);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--white);
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.35);
  font-weight: 600;
}

.nav-link.active i {
  color: var(--cyan-accent);
}

.nav-cta {
  background: linear-gradient(135deg, var(--safety-blue) 0%, #2563eb 100%);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #1e40af 0%, var(--safety-blue) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.6);
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 1010;
  padding: 0.5rem;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 19, 43, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background-color: var(--gray-50);
  z-index: 1002;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  transition: right 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.5rem;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}

.mobile-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-brand i {
  color: var(--safety-blue);
}

.close-drawer-btn {
  background: var(--gray-200);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-drawer-btn:hover {
  background: var(--safety-blue);
  color: var(--white);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-mid);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.mobile-nav-link i {
  color: var(--safety-blue);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background-color: var(--safety-blue-light);
  color: var(--safety-blue);
}

.mobile-drawer-cta {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(11, 19, 43, 0.92) 0%, rgba(28, 37, 65, 0.85) 100%), 
              url('./images/Featured\ Master\ Guide.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 5rem 0;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: var(--cyan-accent);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--cyan-accent);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--gray-200);
  margin-bottom: 2.25rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--safety-blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.4);
}

.btn-primary:hover {
  background-color: var(--safety-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.5);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-amber {
  background-color: var(--amber-accent);
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

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

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

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

.trust-strip {
  background-color: var(--navy-mid);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.25rem 0;
  color: var(--white);
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.15);
  color: var(--cyan-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.trust-text h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.trust-text p {
  color: var(--gray-400);
  font-size: 0.85rem;
}

.section {
  padding: 5rem 0;
}

.section-bg-light {
  background-color: var(--gray-100);
}

.section-bg-navy {
  background-color: var(--navy-dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  color: var(--safety-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-bg-navy .section-subtitle {
  color: var(--cyan-accent);
}

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

.section-bg-navy .section-title {
  color: var(--white);
}

.section-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
}

.section-bg-navy .section-desc {
  color: var(--gray-400);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-badge-icon {
  display: none;
}

.card-body {
  padding: 1.75rem 1.5rem 1.5rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--gray-600);
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-card {
  color: var(--safety-blue);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: center;
}

.btn-card:hover {
  color: var(--safety-blue-hover);
  gap: 0.7rem;
}

.editorial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.editorial-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.editorial-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.editorial-overlay-box {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(11, 19, 43, 0.88);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.editorial-overlay-box h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.editorial-overlay-box p {
  color: var(--gray-300);
  font-size: 0.875rem;
}

.editorial-content-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.editorial-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.editorial-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--safety-blue-light);
  color: var(--safety-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.editorial-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.editorial-text p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--cyan-accent);
  margin-bottom: 0.35rem;
}

.stat-label {
  color: var(--white);
  font-size: 0.925rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.stat-desc {
  color: var(--gray-400);
  font-size: 0.8rem;
}

.cta-banner {
  background: linear-gradient(135deg, var(--safety-blue) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

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

.cta-banner p {
  color: var(--gray-200);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.page-hero {
  background: linear-gradient(135deg, rgba(11, 19, 43, 0.9) 0%, rgba(28, 37, 65, 0.85) 100%), 
              url('./images/2.avif') center/cover no-repeat;
  padding: 5rem 0 4rem 0;
  color: var(--white);
  text-align: center;
}

.page-hero-title {
  font-size: 2.75rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: 1.15rem;
  color: var(--gray-200);
  max-width: 640px;
  margin: 0 auto;
}

.category-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tag-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag-btn i {
  color: var(--safety-blue);
}

.tag-btn:hover, .tag-btn.active {
  background-color: var(--safety-blue);
  color: var(--white);
  border-color: var(--safety-blue);
}

.tag-btn:hover i, .tag-btn.active i {
  color: var(--white);
}

.featured-guide-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  margin-bottom: 4rem;
  border: 1px solid var(--gray-200);
}

.featured-guide-img {
  height: 100%;
  min-height: 380px;
}

.featured-guide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-guide-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.guide-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cyan-light);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.featured-guide-content h3 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.featured-guide-content p {
  color: var(--gray-600);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.dashboard-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-xl);
}

.dashboard-header-text h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.dashboard-header-text p {
  color: var(--gray-300);
  font-size: 1.05rem;
}

.daily-tip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--cyan-accent);
  margin-bottom: 3rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.tip-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--cyan-light);
  color: var(--cyan-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.tip-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.tip-content p {
  color: var(--gray-600);
  font-size: 1rem;
}

.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto 4rem auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gray-200);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 2.5rem;
}

.timeline-marker {
  position: absolute;
  left: 12px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--safety-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 0 0 4px var(--gray-50);
}

.timeline-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.timeline-day {
  color: var(--safety-blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.timeline-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.checklist-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.checklist-container .section-subtitle {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 0.5rem;
  order: -1;
}

.checklist-container > div:first-child {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100%;
}

.checklist-container .badge {
  order: -1;
  margin-bottom: 1rem;
  align-self: center;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.checklist-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.checklist-item i {
  color: var(--cyan-accent);
  font-size: 1.2rem;
  margin-top: 0.15rem;
}

.checklist-item-text h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.checklist-item-text p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.newsletter-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.newsletter-box h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.newsletter-box p {
  color: var(--gray-300);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 1.25rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.form-label-white {
  color: var(--gray-200);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--safety-blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

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

.risk-hero {
  background: linear-gradient(135deg, rgba(11, 19, 43, 0.92) 0%, rgba(28, 37, 65, 0.88) 100%), 
              url('./images/Personal\ Banking\ Security.jpg') center/cover no-repeat;
  padding: 5rem 0 4rem 0;
  color: var(--white);
  text-align: center;
}

.assessment-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  max-width: 820px;
  margin: 3rem auto 4rem auto;
  position: relative;
  z-index: 10;
  padding: 3.5rem 3rem;
}

.assessment-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.assessment-header h3 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}

.assessment-header p {
  color: var(--gray-600);
}

.risk-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.risk-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.risk-card-img {
  height: 190px;
  position: relative;
}

.risk-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.contact-info-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--safety-blue-light);
  color: var(--safety-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--gray-600);
  font-size: 0.925rem;
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-form-box h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.faq-section {
  max-width: 860px;
  margin: 4rem auto 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  color: var(--safety-blue);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--gray-600);
  font-size: 0.975rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.toast-alert {
  position: fixed;
  bottom: -100px;
  right: 2rem;
  background: var(--navy-dark);
  color: var(--white);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 6px solid var(--cyan-accent);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-alert.show {
  bottom: 2rem;
}

.toast-alert i {
  color: var(--cyan-accent);
  font-size: 1.5rem;
}

.toast-content h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.toast-content p {
  color: var(--gray-300);
  font-size: 0.875rem;
}

.footer {
  background-color: var(--navy-dark);
  color: var(--gray-300);
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin: 1.25rem 0 1.5rem 0;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.85rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--safety-blue);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.925rem;
}

.footer-links a:hover {
  color: var(--cyan-accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--cyan-accent);
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  position: relative;
}

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

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--safety-blue-light);
  color: var(--safety-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--gray-600);
  font-size: 0.925rem;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--safety-blue);
}

.quote-text {
  color: var(--gray-700);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.quote-author {
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 0.95rem;
}

.quote-role {
  color: var(--safety-blue);
  font-size: 0.8rem;
  font-weight: 600;
}

.hotline-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-200);
  border-top: 5px solid var(--safety-blue);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.hotline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hotline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--safety-blue-light);
  color: var(--safety-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.hotline-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.hotline-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--safety-blue);
  margin-bottom: 0.5rem;
}

.hotline-card p {
  color: var(--gray-600);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.85rem;
  }
  .cards-grid, .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .featured-guide-box {
    grid-template-columns: 1fr;
  }
  .editorial-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .hero {
    min-height: auto;
    padding: 4rem 0;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .cards-grid, .grid-4-col, .grid-3-col {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .risk-cards-grid {
    grid-template-columns: 1fr;
  }
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-header {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .daily-tip-card {
    flex-direction: column;
    text-align: center;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .assessment-wrapper {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
  .mobile-drawer {
    width: 50vw;
  }
}

@media (max-width: 480px) {
  .mobile-drawer {
    width: 65vw;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .stat-card {
    padding: 1.1rem 0.65rem;
  }
  .stat-number {
    font-size: 1.65rem;
  }
  .stat-label {
    font-size: 0.825rem;
  }
  .stat-desc {
    font-size: 0.75rem;
  }
}
