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

:root {
  --primary: #0D6EFD;
  --secondary: #0B5ED7;
  --accent: #20C997;
  --background: #F8FAFC;
  --dark: #1E293B;
  --light: #FFFFFF;
  --gray-light: #E2E8F0;
  --gray: #64748B;
  --shadow-sm: 0 4px 6px -1px rgba(30, 41, 59, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(30, 41, 59, 0.08), 0 4px 6px -2px rgba(30, 41, 59, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(30, 41, 59, 0.1), 0 10px 10px -5px rgba(30, 41, 59, 0.04);
  --shadow-primary: 0 10px 20px rgba(13, 110, 253, 0.2);
  --shadow-accent: 0 10px 20px rgba(32, 201, 151, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  animation: slideUp 0.8s ease-out;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn i {
  margin-left: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--light);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(13, 110, 253, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--light);
  border-color: var(--light);
}

.btn-secondary:hover {
  background-color: var(--light);
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.header.scrolled .logo-text {
  color: var(--dark);
}

.header.scrolled .nav-links a {
  color: var(--dark);
}

.header.scrolled .logo-icon {
  background-color: var(--primary);
  color: var(--light);
}

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

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

.logo-icon {
  width: 42px;
  height: 42px;
  background-color: var(--light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
  font-size: 1.3rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--light);
  letter-spacing: -0.5px;
  transition: var(--transition);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--light);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary) !important;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background-color: var(--light);
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  font-size: 1.8rem;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.mobile-nav-links {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-links a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 12px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--primary);
  padding-left: 8px;
}

.mobile-cta {
  margin-top: 40px;
  width: 100%;
}

.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--light);
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(13, 110, 253, 0.45));
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  animation: slideUp 0.8s ease-out;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--light);
  padding-top: 100px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(13, 110, 253, 0.4));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  color: var(--dark);
  box-shadow: var(--shadow-lg);
  animation: fadeIn 1s ease-out;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
  color: var(--primary);
  border-color: var(--primary);
}

.hero-buttons .btn-secondary:hover {
  background-color: var(--primary);
  color: var(--light);
}

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

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

.card {
  background-color: var(--light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 110, 253, 0.3);
}

.card-img-wrapper {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background-color: var(--primary);
  color: var(--light);
}

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

.card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}

.card-link i {
  margin-left: 6px;
  transition: var(--transition);
}

.card:hover .card-link i {
  transform: translateX(4px);
}

.features {
  background-color: var(--light);
}

.why-choose {
  background-color: var(--background);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.why-choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-choose-content p {
  color: var(--gray);
  margin-bottom: 30px;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-icon {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 4px;
}

.benefit-text h4 {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
}

.benefit-text p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
}

.categories {
  background-color: var(--light);
}

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

.category-card {
  background: var(--background);
  padding: 35px 25px;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.category-card:hover {
  background-color: var(--light);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 110, 253, 0.2);
}

.category-card .card-icon {
  margin: 0 auto 20px;
}

.stats {
  background-color: var(--dark);
  color: var(--light);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--gray-light);
  font-weight: 500;
  font-size: 1rem;
}

.timeline-section {
  background-color: var(--background);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--gray-light);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--light);
  border: 4px solid var(--primary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition);
}

.timeline-item:hover::after {
  background-color: var(--accent);
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.right::after {
  left: -10px;
}

.timeline-content {
  padding: 24px;
  background-color: var(--light);
  position: relative;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 110, 253, 0.2);
}

.timeline-step {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--gray);
  font-size: 0.9rem;
}

.testimonials {
  background-color: var(--light);
}

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

.testimonial-card {
  background-color: var(--background);
  padding: 40px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.testimonial-card:hover {
  background-color: var(--light);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 110, 253, 0.2);
}

.stars {
  color: #FFC107;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 24px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

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

.client-details h4 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.client-details span {
  font-size: 0.85rem;
  color: var(--gray);
}

.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--light);
  text-align: center;
}

.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.9), rgba(30, 41, 59, 0.95));
  z-index: 1;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-banner p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

.faqs {
  background-color: var(--background);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details {
  background-color: var(--light);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: var(--transition);
}

details[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

summary {
  padding: 20px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--gray);
  transition: var(--transition);
}

details[open] summary::after {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-content {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--gray);
  border-top: 1px solid transparent;
}

details[open] .faq-content {
  border-top-color: var(--gray-light);
  animation: fadeIn 0.4s ease-out;
}

.newsletter {
  background-color: var(--light);
  border-bottom: 1px solid var(--gray-light);
}

.newsletter-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-box p {
  color: var(--gray);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.form-input {
  flex-grow: 1;
  padding: 14px 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gray-light);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--background);
}

.form-input:focus {
  border-color: var(--primary);
  background-color: var(--light);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about .logo-text {
  color: var(--light);
}

.footer-about p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 12px;
}

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

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

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

.footer-links a {
  color: var(--gray-light);
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
  opacity: 1;
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gray-light);
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--gray-light);
  opacity: 0.7;
}

.back-to-top {
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
}

.back-to-top:hover {
  background-color: var(--secondary);
  transform: translateY(-5px);
}

.coverage-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.coverage-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
}

.coverage-benefit-item i {
  color: var(--accent);
}

.inquiry {
  background-color: var(--light);
}

.inquiry-box {
  background-color: var(--background);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.inquiry-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.inquiry-info p {
  color: var(--gray);
  margin-bottom: 30px;
}

.inquiry-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inquiry-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.inquiry-feature i {
  color: var(--primary);
  font-size: 1.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

select.form-input {
  width: 100%;
  appearance: none;
  /* background-image: url("data:image/svg+xml;utf8,<svg fill='%2364748b' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>"); */
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-group button {
  width: 100%;
  padding: 14px;
}

.guides-container {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 40px;
}

.guides-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.guide-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
  font-weight: 500;
}

.guide-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.guide-meta i {
  color: var(--primary);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
  grid-column: span 2;
}

.page-num {
  width: 42px;
  height: 42px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gray-light);
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: var(--transition);
}

.page-num:hover,
.page-num.active {
  background-color: var(--primary);
  color: var(--light);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: var(--light);
  border-radius: var(--border-radius-md);
  padding: 30px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.sidebar-search {
  display: flex;
  gap: 8px;
}

.sidebar-search .form-input {
  padding: 10px 15px;
}

.sidebar-search button {
  padding: 10px 15px;
}

.sidebar-categories li {
  margin-bottom: 12px;
}

.sidebar-categories a {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--background);
}

.sidebar-categories a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.sidebar-categories span {
  background-color: var(--background);
  color: var(--gray);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.featured-guide-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.featured-guide-item img {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
}

.featured-guide-item-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.4;
}

.featured-guide-item-info h4 a:hover {
  color: var(--primary);
}

.featured-guide-item-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

.calculator-section {
  background-color: var(--background);
}

.calculator-box {
  background-color: var(--light);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
  max-width: 900px;
  margin: 0 auto;
}

.calculator-box h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.calculator-box p {
  color: var(--gray);
  text-align: center;
  margin-bottom: 35px;
}

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

.download-card {
  background-color: var(--light);
  border-radius: var(--border-radius-md);
  padding: 30px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 110, 253, 0.2);
}

.download-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.download-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.download-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.download-card .btn {
  width: 100%;
}

.glossary-section {
  background-color: var(--background);
}

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

.glossary-card {
  background-color: var(--light);
  padding: 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}

.glossary-card .letter {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background-color: rgba(32, 201, 151, 0.1);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 15px;
}

.glossary-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.glossary-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
  background-color: var(--light);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th, td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-light);
}

th {
  background-color: #F1F5F9;
  font-weight: 600;
  color: var(--dark);
}

tr:last-child td {
  border-bottom: none;
}

.check-icon {
  color: var(--accent);
  font-size: 1.1rem;
}

.cross-icon {
  color: #DC3545;
  font-size: 1.1rem;
}

.plan-price {
  font-weight: 700;
  color: var(--primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background-color: var(--light);
  border-radius: var(--border-radius-md);
  padding: 30px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

.contact-info-text a:hover {
  color: var(--primary);
}

.contact-form-box {
  background-color: var(--light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-md);
}

.contact-form-box h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form-box p {
  color: var(--gray);
  margin-bottom: 30px;
}

.textarea-input {
  min-height: 150px;
  resize: vertical;
}

.map-section {
  padding: 0;
  height: 450px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(var(--gray-light) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.5;
  top: -50%;
  left: -50%;
}

.map-placeholder-content {
  position: relative;
  z-index: 2;
  max-width: 400px;
  padding: 30px;
  background-color: var(--light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}

.map-placeholder-content i {
  font-size: 2.5rem;
  color: #DC3545;
  margin-bottom: 15px;
}

.map-placeholder-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.map-placeholder-content p {
  font-size: 0.9rem;
  color: var(--gray);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-home {
  background-image: url('../images/1.jpg');
}

.hero-coverage {
  background-image: url('../images/2.jpg');
}

.hero-guides {
  background-image: url('../images/3.jpg');
}

.hero-resources {
  background-image: url('../images/4.jpg');
}

.hero-contact {
  background-image: url('../images/5.jpg');
}

.cta-banner-bg {
  background-image: url('../images/2.jpg');
}

.hero-info {
  max-width: 800px;
  color: var(--light);
  animation: fadeIn 1s ease-out;
}

.hero-info h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-info h1 span {
  color: var(--accent);
}

.hero-info p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 680px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-info .badge {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--light);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-info .hero-buttons .btn-secondary {
  color: var(--light);
  border-color: var(--light);
}

.hero-info .hero-buttons .btn-secondary:hover {
  background-color: var(--light);
  color: var(--dark);
}

.hero-info {
  margin: 0 auto;
  text-align: center;
}

.hero-info p {
  margin-left: auto;
  margin-right: auto;
}

.hero-info .hero-buttons {
  justify-content: center;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header .badge {
  order: 1;
}

.section-header h2 {
  order: 2;
}

.section-header p {
  order: 3;
}

.card-body {
  text-align: center;
}

.card-body .card-icon {
  margin-left: auto;
  margin-right: auto;
}

.card-body .guide-meta {
  justify-content: center;
}

.card-body .card-link,
.card-body .btn {
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

.glossary-card {
  text-align: center;
}

.glossary-card .letter {
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  text-align: center;
}

.testimonial-card .stars {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.testimonial-card .client-info {
  justify-content: center;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-choose-content h2,
.why-choose-content p,
.why-choose-content .badge {
  margin-left: auto;
  margin-right: auto;
}

.why-choose-content .benefits-list {
  align-self: stretch;
  text-align: left;
}

.coverage-benefit-item {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}

.coverage-benefit-item i {
  margin-top: 4px;
}

.inquiry-info h2,
.inquiry-info p {
  text-align: center;
}

/* Custom premium styles for contact page message details textarea */
.contact-form-box .form-group-full textarea.textarea-input {
  width: 100%;
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  background-color: var(--light);
  padding: 16px 20px;
  line-height: 1.6;
  font-family: inherit;
  font-size: 1rem;
  box-shadow: inset 0 2px 4px rgba(30, 41, 59, 0.02);
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 180px;
  resize: vertical;
}

/* Hover state styling */
.contact-form-box .form-group-full textarea.textarea-input:hover {
  border-color: #CBD5E1;
  background-color: #F8FAFC;
}

/* Premium focus state styling */
.contact-form-box .form-group-full textarea.textarea-input:focus {
  border-color: var(--primary);
  background-color: var(--light);
  box-shadow: 0 10px 20px -5px rgba(13, 110, 253, 0.08),
              0 0 0 4px rgba(13, 110, 253, 0.15);
  outline: none;
}

/* Elegant placeholder transition */
.contact-form-box .form-group-full textarea.textarea-input::placeholder {
  color: var(--gray);
  opacity: 0.65;
  font-style: italic;
  transition: opacity 0.3s ease;
}

.contact-form-box .form-group-full textarea.textarea-input:focus::placeholder {
  opacity: 0.35;
}

/* Beautiful custom scrollbar for the textarea */
.contact-form-box .form-group-full textarea.textarea-input::-webkit-scrollbar {
  width: 8px;
}

.contact-form-box .form-group-full textarea.textarea-input::-webkit-scrollbar-track {
  background: transparent;
}

.contact-form-box .form-group-full textarea.textarea-input::-webkit-scrollbar-thumb {
  background: rgba(13, 110, 253, 0.15);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.contact-form-box .form-group-full textarea.textarea-input::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* Glow accent below the textarea on focus */
.contact-form-box .form-group-full:has(textarea.textarea-input) {
  position: relative;
}

.contact-form-box .form-group-full:has(textarea.textarea-input)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: width 0.4s ease, left 0.4s ease;
  pointer-events: none;
}

.contact-form-box .form-group-full:focus-within:has(textarea.textarea-input)::after {
  width: 100%;
  left: 0;
}

