/* =========================
   HEADER BASE
========================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   LOGO
========================= */
.logo img {
  height: 40px;
  display: block;
}

/* =========================
   NAVIGATION DESKTOP
========================= */
.nav-menu {
  display: flex;
  align-items: center;
  padding-top: 10px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 40px;
  padding-left: 0 !important;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #001846;
  font-weight: 600;
  font-size: 1.05rem;
  transition: 0.3s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
  color: #cf2128;
}

/* =========================
   RIGHT SECTION (DESKTOP)
========================= */
/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Quote Button */
.quote-btn {
  background-color: #FFFFFF;
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  fill: var(--e-global-color-43f9732);
  color: var(--e-global-color-43f9732);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #C3C3C3;
  border-radius: 18px 18px 18px 18px;
  line-height: 1;
  padding: 12px 24px;
  text-align: center;
  transition: all .3s;
  text-decoration: none;
}

.quote-btn:hover {
  color: #b71c22;
}





/* Dropdown Container */
/* =========================
   COUNTRY DROPDOWN
========================= */

.country-dropdown {
  position: relative;
  display: inline-block;
}

/* =========================
   BUTTON STYLE (Dark Rounded)
========================= */

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #b71c22;
  padding: 10px 22px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Hover button effect */
.dropdown-btn:hover {
  color: #ffffff !important;
  border: 2px solid #3b82f6;
  background: #2f2f2f;

}



/* Arrow icon */
.dropdown-icon {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.country-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* =========================
   DROPDOWN MENU CARD
========================= */

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);

  width: 220px;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 0;
  list-style: none;
  margin: 0;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;

  z-index: 9999;
}

/* Show on hover */
.country-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* =========================
   MENU ITEMS
========================= */

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #0f1e40;
  transition: background 0.3s ease;
}

/* Hover effect */
.dropdown-menu li a:hover {
  background: #f4f6fb;
}

/* Flag image */
.dropdown-menu img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #cf2128;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 991px) {

  .header-container {
    padding: 15px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    max-height: 1000px;
    padding: 10px 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-menu ul li {
    border-bottom: 1px solid #eee;
  }

  .nav-menu ul li a {
    display: block;
    padding: 16px 20px;
    font-size: 1rem;
  }

  .nav-menu ul li a.active {
    background: #cf2128;
    color: #ffffff;
  }

  .header-right {
    display: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-top: 10px;
  }
}

















/* ============== pricing ============== */


.sec-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #222;
}

.sec-title span {
  color: #d32f2f;
  /* red highlight */
}

.sec-desc {
  text-align: start;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 1.75em;
  color: #000;
  line-height: 1.7;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.sec-subheading {
  font-size: 24px;
  font-weight: 500;
  color: #111;
}

.text-blue {
  color: #1f2853 !important;
}

.bg-blue {
  background-color: #1f2853 !important;
}

.text-red {
  color: #d0252c !important;
}

.bg-red {
  background-color: #d0252c !important;
}


.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.text-sm {
  font-size: 0.875rem !important;
  /* 14px */
  line-height: 1.25rem;
  /* 20px */
}

.line-h {
  line-height: 1.7em;
}

.text-base,
.text-md {
  font-size: 1rem !important;
  /* 16px */
  line-height: 1.5rem;
  /* 24px */
}

.text-lg {
  font-size: 1.125rem !important;
  /* 18px */
  line-height: 1.75rem;
  /* 28px */
}

.pricing-hero {
  padding: 10rem 0 3rem;
  background: #ffffff;
  text-align: center;
  height: 100% !important;
}

.pricing-desc {
  font-size: 17px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Box */

.stats-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 40px;
  border: 2px dashed #575757;
  border-radius: 16px;
  /* background: #fafafa; */
}

.stat-item {
  flex: 1;
}

.stat-item h3 {
  font-size: 32px;
  color: #CF2128;
  margin-bottom: 8px;
  font-weight: 600;
}

.stat-item p {
  font-size: 18px;
  font-weight: 500;
  color: #1F2853;
}

.section-padding {
  padding: 3rem 0;
}

.section-margin {
  margin: 3rem 0;
}

.pricing-four-step {
  background-color: #252525;
}

.filing-solutions {
  background: #fff;
}

/* Card Base */

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  transition: 0.3s ease;
  height: 100%; 
}

.pricing-card:hover {
  transform: translateY(-6px);
}

/* Featured Card */

.pricing-card.featured {
  background: #1f2d4d;
  padding: 15px;
}

.featured-inner {

  border-radius: 16px;
  padding: 40px 30px;
}

.tat-caption{
  color: #7a7a7a;
}

/* Typography */

.pricing-card h3 {
  font-size: 28px;
  font-weight: 500;
  color: #1F2853;
  margin-bottom: 30px;
  line-height: 1.3em;
}

.pricing-card .sub {
  font-size: 18px;
  font-weight: 500;
  color: #515C74;
  display: block;
  margin-bottom: 25px;
}

.pricing-card-divider {
  border-top: 1.9px dashed #b4b4b4;
}

/* Feature List */

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card ul li {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: #1f2853;
}

.pricing-card ul li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  margin-right: 8px;
  position: absolute;
  left: 0;
  top: 3px;
  color: #1f2853;
  font-size: 17px;
}

/* Button */

.price-btn {
  width: 100%;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #252525;
  transition: 0.3s;
  padding: 13px 30px 13px 30px;
  border-radius: 18px 18px 18px 18px;
  background: #fff;
}

.price-btn:hover {
  background: #1f2d4d;
  color: #fff !important;
}

.price-btn.primary {
  width: 56%;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #252525;
  padding: 13px 30px 13px 30px;
  border-radius: 18px 18px 18px 18px;
  background: #fff;
}

.price-btn.primary:hover {
  background: #1f2d4d;
  color: #fff;
}

.book-btn {
  background-color: #1f2853;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #C3C3C3;
  border-radius: 10px 10px 10px 10px;
  padding: 14px 22px 14px 22px;
}

/* Responsive */

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .sec-title {
    font-size: 30px;
  }
}

/* Responsive */

@media (max-width: 768px) {
  .sec-title {
    font-size: 22px;
  }

  .section-padding {
    padding: 2.5rem 0;
  }

  .section-margin {
    margin: 2.5rem 0;
  }

  .stats-box {
    flex-direction: column;
  }

  .pricing-hero {
    height: auto;
    padding: 10rem 0 3rem;
  }
}

.pricing-card.featured .featured-inner {
  background-image: url(../img/pricing/file-2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.pricing-card {
  background-image: url(../img/pricing/file-1.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ============== pricing ============== */


.price-stream-title {
  font-family: "Bricolage Grotesque", Sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #000000;
}

.pricing-plan-title {
  font-size: 40px;
  font-weight: 700;
  color: #1F2853;
}

.pricing-plan-desc {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #454C70;
  line-height: 1.6;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-title {
  font-size: 40px;
  font-weight: 700;
  color: #1F2853;
}

.why-choose-maintitle {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

.why-choose-maintitle span {
  color: #CF2128;
}

.why-choose-desc {
  text-align: start;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 1.95em;
  color: #000;
  line-height: 1.9;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title {
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
}

.cta-desc {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
}

.cta-btn {
  background-color: #FFFFFF;
  font-family: "Montserrat", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  fill: #1f2853;
  color: #1f2853;
  border-radius: 18px 18px 18px 18px;
  line-height: 1;
  padding: 12px 24px;
  text-align: center;
  transition: all .3s;
}


/* ============================= */
/* Mobile Text Optimization Only */
/* ============================= */

@media (max-width: 768px) {

  /* Section Titles */
  .sec-title,
  .price-stream-title,
  .why-choose-maintitle {
    font-size: 26px !important;
    line-height: 1.3;
  }

  .pricing-plan-title,
  .why-choose-title,
  .cta-title {
    font-size: 22px !important;
    line-height: 1.3;
  }

  /* Paragraphs */
  .sec-desc,
  .pricing-desc,
  .why-choose-desc,
  .pricing-plan-desc,
  .cta-desc {
    font-size: 15px !important;
    line-height: 1.6;
  }

  /* Pricing Card Titles */
  .pricing-card h3 {
    font-size: 20px !important;
  }

  .pricing-card .sub {
    font-size: 15px !important;
  }

  /* Pricing Features */
  .pricing-card ul li {
    font-size: 14px !important;
  }

  /* Stats Section */
  .stat-item h3 {
    font-size: 22px !important;
  }

  .stat-item p {
    font-size: 14px !important;
  }

  /* Buttons */
  .price-btn,
  .price-btn.primary,
  .book-btn,
  .cta-btn {
    font-size: 14px !important;
    padding: 10px 18px !important;
  }

}

/* ================================= */
/* Mobile Spacing & Padding Fix Only */
/* ================================= */

@media (max-width: 768px) {

  /* Section Spacing */
  .section-padding {
    padding: 2rem 0.5rem !important;
  }

  .section-margin {
    margin: 2rem 0 !important;
  }

  /* Hero Section */
  .pricing-hero {
    padding: 6rem 1rem 2rem !important;
  }

  /* Stats Box */
  .stats-box {
    padding: 20px !important;
    gap: 20px !important;
  }

  .stat-item {
    text-align: center;
  }

  /* Pricing Cards */
  .pricing-card {
    padding: 25px 20px !important;
  }

  .pricing-card.featured {
    padding: 10px !important;
  }

  .pricing-card.featured .featured-inner {
    padding: 25px 20px !important;
  }

  /* Buttons */
  .price-btn,
  .price-btn.primary {
    width: 100% !important;
  }

  /* CTA Section */
  .cta-btn {
    padding: 10px 20px !important;
  }

}