@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

/* Copy Animation */
::selection {
  background-color: #3390FF;
  color: #fff;
}

.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

/* QHost-inspired refresh */
:root {
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --base-h: 343;
  --base-s: 71%;
  --base-l: 32%;
  --heading: 340 12% 20%;
  --body: 340 10% 28%;
}

body {
  background-color: #f6f4f1 !important;
  color: #40383b;
}

.header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(138, 23, 56, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(11, 31, 75, 0.04);
}

.header-bottom {
  padding: 14px 0;
}

.menu li a {
  color: #312a2c;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.2px;
  position: relative;
  transition: color 0.3s ease;
}

.menu li a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #8a1738;
  transition: width 0.3s ease;
}

.menu li a:hover,
.menu li a.active {
  color: #8a1738;
}

.menu li a:hover:not(.btn)::after,
.menu li a.active:not(.btn)::after {
  width: 100%;
}

.menu-btn .btn {
  border-radius: 999px;
  padding: 8px 18px;
}

.menu-cta .btn {
  box-shadow: 0 10px 20px rgba(138, 23, 56, 0.18);
}

.header-actions .cart-btn,
.header-actions .language-btn {
  color: #3a3235;
}

.qhost-section {
  padding: 80px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 40px;
}

.section-title {
  font-size: 38px;
  font-weight: 600;
  color: #8a1738;
}

.section-subtitle {
  font-size: 18px;
  color: #3c3c3c;
}

.qhost-hero {
  position: relative;
  padding: 100px 0 80px;
  background: radial-gradient(circle at 10% 10%, rgba(138, 23, 56, 0.05), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(11, 31, 75, 0.05), transparent 40%),
    #ffffff;
}

.qhost-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
}

.qhost-hero .container {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(138, 23, 56, 0.1);
  color: #8a1738;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 54px;
  font-weight: 600;
  margin: 18px 0 14px;
  color: #3a3235;
}

/* Homepage features section */
.features-section {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--base-200)), transparent);
}

.features-section .section-heading {
  margin-bottom: 44px;
}

.features-section .section-title {
  color: #2d2430;
  font-size: clamp(1.7rem, 2.2vw, 2.45rem);
  margin-bottom: .75rem;
}

.features-section .section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.65;
  color: #5b5256;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  background: #fff;
  border: 1px solid #ebe5e8;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 23, 56, 0.2);
  box-shadow: 0 12px 32px rgba(37, 24, 32, 0.08);
}

.feature-icon {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9f2f4 0%, #f0e6ea 100%);
  margin-bottom: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 2rem;
  color: #8a1738;
}

.feature-icon__img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.feature-card h4 {
  font-size: 1.12rem;
  margin: 0 0 .5rem;
  color: #2d2430;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  color: #5f565b;
  line-height: 1.58;
  font-size: .95rem;
}

.feature-card img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1199px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .features-section {
    padding: 64px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 22px 18px;
  }
}

.hero-subtitle {
  font-size: 20px;
  color: #40383b;
  margin-bottom: 28px;
}

.hero-search {
  max-width: 650px;
}

.domain-search-form .domain-search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  border-radius: 35px;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.domain-search-form .form-control {
  border: 0;
  box-shadow: none;
  height: 54px;
  font-size: 18px;
  padding-left: 60px;
}

.domain-search-icon {
  position: absolute;
  left: 20px;
  font-size: 18px;
  color: #8a1738;
}

.domain-search-btn {
  border-radius: 999px;
  height: 48px;
  padding: 0 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  font-weight: 600;
  color: #40383b;
}

.hero-highlight i {
  font-size: 20px;
  color: #8a1738;
}

.hero-visual {
  background: #ffffff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(58, 50, 53, 0.15);
  text-align: center;
}

.hero-visual img {
  max-width: 100%;
}

.plans-section .plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.plan-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(58, 50, 53, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-card--featured {
  border: 2px solid rgba(138, 23, 56, 0.3);
  transform: translateY(-8px);
}

.plan-card__header h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: #8a1738;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 36px;
  font-weight: 700;
  color: #3a3235;
}

.plan-price .currency {
  font-size: 16px;
  vertical-align: super;
}

.plan-price .period {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8a1738;
  margin-left: 4px;
}

.plan-category {
  font-size: 14px;
  color: #7a6f72;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #3a3235;
}

.plan-features i {
  color: #8a1738;
}

.domain-section .domain-search-wrap {
  max-width: 680px;
  margin: 0 auto 40px;
}

.domain-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.tld-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(58, 50, 53, 0.08);
}

.tld-name {
  font-size: 24px;
  font-weight: 600;
  color: #8a1738;
}

.tld-price {
  margin: 10px 0 16px;
  font-weight: 600;
  color: #3a3235;
}

.tld-price span {
  font-size: 12px;
  color: #8a1738;
  text-transform: uppercase;
}

.domain-footer {
  margin-top: 30px;
}

.domain-note {
  color: #5b5052;
}

.faq-section .faq-item {
  border-radius: 20px;
  border: 1px solid rgba(138, 23, 56, 0.1);
  box-shadow: 0 12px 30px rgba(58, 50, 53, 0.06);
}

.faq-section .faq-item__title {
  font-weight: 600;
  color: #3a3235;
}

.faq-section .faq-item__title::before {
  color: #8a1738;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(58, 50, 53, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card h3 {
  font-size: 20px;
  color: #3a3235;
}

.blog-card a {
  color: inherit;
}

.blog-date {
  font-size: 13px;
  color: #8a1738;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-excerpt {
  color: #4b4042;
}

.footer {
  background: #2d1d21;
  color: #f6f4f1;
}

.footer a {
  color: #f6f4f1;
}

.footer .footer-links a:hover {
  color: #d7b7c1;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 40px;
  }

  .qhost-section {
    padding: 60px 0;
  }

  .domain-search-form .domain-search-field {
    border-radius: 12px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-search {
    max-width: 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1199px) {
  .menu {
    background: #ffffff;
  }

  .menu li a {
    color: #3a3235;
  }
}

.menu-btn a {
  border-radius: 999px;
  padding: 6px 12px;
}

.menu-btn a:hover {
  background: rgba(138, 23, 56, 0.08);
}

.header-trigger__icon i {
  color: #8a1738;
}

.sub-menu {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(138, 23, 56, 0.05);
  box-shadow: 0 15px 45px rgba(11, 31, 75, 0.12);
  padding: 12px 0;
  min-width: 240px;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu li:hover>.sub-menu {
  transform: translateY(0);
}

.sub-menu li a {
  color: #312a2c !important;
  padding: 10px 24px !important;
  font-size: 14px;
  font-weight: 500;
  display: flex !important;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.sub-menu li a i {
  font-size: 18px;
  color: #8a1738;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.sub-menu li a:hover {
  background-color: rgba(138, 23, 56, 0.04);
  color: #8a1738 !important;
  padding-left: 28px !important;
}

.sub-menu li a:hover i {
  opacity: 1;
}

.sub-menu-divider {
  padding: 8px 24px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #948c8e;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(138, 23, 56, 0.05);
  margin-bottom: 8px;
}

:root {
  --qhost-maroon: #8a1738;
  --qhost-ink: #3a3235;
}

.btn--base {
  background-color: var(--qhost-maroon) !important;
  border-color: var(--qhost-maroon) !important;
}

.menu-btn .btn--base,
.menu-btn .login-link {
  border-radius: 999px !important;
  padding: 8px 24px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(138, 23, 56, 0.15) !important;
  transition: all 0.3s ease !important;
}

.menu-btn .btn--base:hover,
.menu-btn .login-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(138, 23, 56, 0.25) !important;
}

.menu-cta .btn {
  background: linear-gradient(135deg, #8a1738 0%, #a41c43 100%) !important;
  border: none !important;
}

.btn--base-outline:hover {
  background-color: var(--qhost-maroon) !important;
  color: #ffffff !important;
}

.text--base {
  color: var(--qhost-maroon) !important;
}

.bg--base {
  background-color: var(--qhost-maroon) !important;
}

@media (max-width: 575px) {
  .domain-search-form .domain-search-field {
    flex-wrap: wrap;
    padding: 10px;
  }

  .domain-search-btn {
    width: 100%;
  }
}

.hero-actions .btn {
  border-radius: 999px;
  padding: 10px 22px;
}

@media (max-width: 991px) {
  .plan-card--featured {
    transform: none;
  }
}

.footer .text--base {
  color: #f6f4f1 !important;
}

.add-cart {
  background-color: var(--qhost-maroon) !important;
  border-color: var(--qhost-maroon) !important;
  border-radius: 999px;
}

.hero-visual__placeholder,
.email-visual__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(138, 23, 56, 0.12), rgba(58, 50, 53, 0.08));
  color: #3a3235;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.solution-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(58, 50, 53, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-icon {
  font-size: 26px;
  color: #8a1738;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 26px rgba(58, 50, 53, 0.07);
}

.step-number {
  font-size: 20px;
  font-weight: 700;
  color: #8a1738;
  margin-bottom: 10px;
}

.email-hosting-section .section-title {
  margin-bottom: 12px;
}

.email-description {
  color: #4b4042;
  margin-bottom: 20px;
}

.email-feature-list {
  display: grid;
  gap: 14px;
}

.email-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.email-feature i {
  color: #8a1738;
  font-size: 20px;
  margin-top: 4px;
}

.email-feature h5 {
  margin-bottom: 4px;
  font-size: 16px;
}

.email-visual {
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(58, 50, 53, 0.12);
  text-align: center;
}

.email-visual img {
  max-width: 50%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.cta-section {
  padding: 70px 0 90px;
  background: linear-gradient(120deg, #2d1d21, #6f0f2c);
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  padding: 36px;
  border-radius: 24px;
  color: #fff;
}

.cta-card h2 {
  color: #fff;
  font-size: 32px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
}

.cta-card .btn {
  background: #ffffff !important;
  color: #6f0f2c !important;
  border-color: #ffffff !important;
}

.page-hero {
  padding: 90px 0 60px;
  background: linear-gradient(120deg, #f7f2f4 0%, #ffffff 100%);
}

.page-hero h1 {
  font-size: 42px;
  color: #3a3235;
  margin-bottom: 14px;
}

.page-hero__subtitle {
  font-size: 18px;
  color: #4b4042;
  margin-bottom: 20px;
}

.page-hero__media {
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(58, 50, 53, 0.12);
  text-align: center;
}

.page-hero__placeholder {
  min-height: 240px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(138, 23, 56, 0.08);
  color: #8a1738;
  font-weight: 600;
}

.page-content {
  padding: 60px 0 80px;
  background: #ffffff;
}

.page-content__body {
  max-width: 920px;
  margin: 0 auto;
  color: #4b4042;
  line-height: 1.8;
}

.page-content__body h2,
.page-content__body h3,
.page-content__body h4 {
  color: #3a3235;
  margin-top: 28px;
}

.page-content__body ul {
  margin: 16px 0 0 18px;
}

/* YafHost brand palette overrides */
:root {
  --brand-navy: #0b1f4b;
  --brand-navy-700: #0a193d;
  --brand-red: #c21f2f;
  --brand-red-700: #9b1524;
  --brand-red-rgb: 194, 31, 47;
  --brand-navy-rgb: 11, 31, 75;
  --brand-ice: #f3f5fb;
  --brand-muted: #5f6f92;
  --qhost-maroon: var(--brand-red);
  --qhost-ink: var(--brand-navy);
  --heading-font: 'Space Grotesk', sans-serif;
  --body-font: 'Manrope', sans-serif;
  --base-h: 354;
  --base-s: 72%;
  --base-l: 44%;
  --heading: 221 74% 17%;
  --body: 221 20% 32%;
}

body {
  background-color: var(--brand-ice) !important;
  color: #1b2b4a;
}

.header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 31, 75, 0.08);
}

.menu li a {
  color: var(--brand-navy);
}

.menu li a:hover,
.menu li a.active {
  color: var(--brand-red);
}

.menu-btn a:hover {
  background: rgba(194, 31, 47, 0.08);
}

.header-trigger__icon i {
  color: var(--brand-red);
}

.qhost-hero {
  background: radial-gradient(circle at 15% 20%, rgba(194, 31, 47, 0.12), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(11, 31, 75, 0.12), transparent 45%),
    linear-gradient(120deg, #f5f7ff 0%, #fff4f6 100%);
}

.hero-tag {
  background: rgba(194, 31, 47, 0.12);
  color: var(--brand-red);
}

.hero-title {
  color: var(--brand-navy);
}

.hero-subtitle {
  color: #34486e;
}

.hero-highlight {
  background: rgba(255, 255, 255, 0.9);
}

.hero-highlight i {
  color: var(--brand-red);
}

.section-title {
  color: var(--brand-navy);
}

.section-subtitle {
  color: var(--brand-muted);
}

.btn--base {
  background-color: var(--brand-red) !important;
  border-color: var(--brand-red) !important;
  box-shadow: 0 10px 20px rgba(194, 31, 47, 0.2);
}

.btn--base:hover {
  background-color: var(--brand-red-700) !important;
  border-color: var(--brand-red-700) !important;
}

.btn--base-outline {
  border-color: var(--brand-red) !important;
  color: var(--brand-red) !important;
}

.btn--base-outline:hover {
  background-color: var(--brand-red) !important;
  color: #ffffff !important;
}

.feature-icon,
.solution-icon,
.step-number {
  color: var(--brand-red);
}

.plan-card__header h3,
.tld-name,
.blog-date {
  color: var(--brand-red);
}

.plan-price {
  color: var(--brand-navy);
}

/* Cleaned up redundant sub-menu rules */

.blog-card,
.feature-card,
.solution-card,
.plan-card,
.tld-card {
  border: 1px solid rgba(11, 31, 75, 0.05);
}

.cta-section {
  background: linear-gradient(120deg, var(--brand-navy), #112b63);
}

.cta-card {
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  background: var(--brand-navy);
}

.footer a {
  color: #f4f6fb;
}

.footer .footer-links a:hover {
  color: #ffccd3;
}

/* YafHost detail polish */
body {
  font-family: var(--body-font);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title {
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.section-title {
  font-weight: 600;
}

.section-subtitle {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.qhost-section {
  position: relative;
  overflow: hidden;
}

.features-section,
.solutions-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
}

.plans-section {
  background: linear-gradient(180deg, #f5f7ff 0%, #ffffff 100%);
}

.hero-tag {
  background: rgba(var(--brand-red-rgb), 0.12);
}

.menu-cta .btn {
  box-shadow: 0 14px 26px rgba(var(--brand-red-rgb), 0.25);
}

.qhost-hero {
  background-size: cover;
  /* animation: heroDrift 16s ease-in-out infinite; */
}

.hero-title,
.hero-subtitle,
.hero-actions,
.hero-search,
.hero-highlights {
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  animation-delay: 0.05s;
}

.hero-subtitle {
  animation-delay: 0.15s;
}

.hero-actions {
  animation-delay: 0.25s;
}

.hero-search {
  animation-delay: 0.35s;
}

.hero-highlights {
  animation-delay: 0.45s;
}

.hero-visual {
  animation: floatUp 0.9s ease 0.2s both;
}

.feature-card,
.solution-card,
.plan-card,
.tld-card,
.blog-card,
.step-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.solution-card:hover,
.plan-card:hover,
.tld-card:hover,
.blog-card:hover,
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(11, 31, 75, 0.14);
}

.btn--base,
.btn--base-outline {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn--base:hover,
.btn--base-outline:hover {
  transform: translateY(-2px);
}

.domain-search-form .domain-search-field {
  box-shadow: 0 0 0 2px rgba(var(--brand-navy-rgb), 0.08);
}

.domain-search-form .domain-search-field:focus-within {
  box-shadow: 0 0 0 3px rgba(var(--brand-red-rgb), 0.24);
}

.domain-search-icon {
  color: var(--brand-red);
}

.plan-card--featured {
  border: 2px solid rgba(var(--brand-red-rgb), 0.3);
  box-shadow: 0 26px 55px rgba(11, 31, 75, 0.16);
}

.tld-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

@keyframes heroDrift {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 35%;
  }

  100% {
    background-position: 0% 0%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .qhost-hero,
  .hero-title,
  .hero-subtitle,
  .hero-actions,
  .hero-search,
  .hero-highlights,
  .hero-visual,
  .feature-card,
  .solution-card,
  .plan-card,
  .tld-card,
  .blog-card,
  .step-card,
  .btn--base,
  .btn--base-outline {
    animation: none !important;
    transition: none !important;
  }
}

.promo-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.promo-banner-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 240px;
  padding: 24px;
  background-color: #0b1f4b;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(11, 31, 75, 0.14);
}

.promo-banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 31, 75, 0.85), rgba(194, 31, 47, 0.65));
}

.promo-banner-overlay {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 320px;
}

.promo-banner-overlay h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.promo-banner-overlay p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.promo-banner-card .btn--base {
  box-shadow: none;
}

.blog-card__media {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #f8fbff;
}

.blog-card__media img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 15px;
  display: block;
}

@media (max-width: 575px) {
  .blog-card__media img {
    height: 160px;
  }
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(var(--brand-red-rgb), 0.12);
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.data-center-section {
  background: #ffffff;
}

.data-center-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--brand-navy-rgb), 0.08);
  color: var(--brand-navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.data-center-description {
  color: #4b5a79;
  margin-bottom: 20px;
}

.data-center-visual {
  background: linear-gradient(135deg, rgba(11, 31, 75, 0.08), rgba(194, 31, 47, 0.08));
  padding: 24px;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(11, 31, 75, 0.12);
}

.data-center-visual img {
  max-width: 100%;
  border-radius: 18px;
}

.data-center-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.data-center-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(11, 31, 75, 0.08);
  display: flex;
  gap: 12px;
}

.data-center-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(var(--brand-red-rgb), 0.12);
  color: var(--brand-red);
  font-size: 20px;
}

.data-center-card h4 {
  margin-bottom: 4px;
  color: var(--brand-navy);
}

.data-center-value {
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 6px;
}

.data-center-text {
  color: #4b5a79;
  margin-bottom: 0;
}

.testimonials-section {
  background: linear-gradient(180deg, #f5f7ff 0%, #ffffff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(11, 31, 75, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-quote {
  font-size: 16px;
  color: #354264;
  margin-bottom: 0;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-footer img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(var(--brand-red-rgb), 0.4);
}

.testimonial-footer h5 {
  margin-bottom: 2px;
  font-size: 16px;
  color: var(--brand-navy);
}

.testimonial-footer span {
  font-size: 13px;
  color: #5a6b8c;
}

.plan-compare-block+.plan-compare-block {
  margin-top: 40px;
}

.plan-compare-header {
  text-align: center;
  margin-bottom: 24px;
}

.plan-compare-header h3 {
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.plan-compare-header p {
  color: #5a6b8c;
}

.plan-compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.plan-compare-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(11, 31, 75, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-compare-card__header h4 {
  margin-bottom: 10px;
  color: var(--brand-navy);
}

.plan-compare-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--brand-red);
}

.plan-compare-price .currency {
  font-size: 12px;
  vertical-align: super;
}

.plan-compare-price .period {
  font-size: 12px;
  color: #5a6b8c;
  margin-left: 4px;
}

.plan-compare-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #3a4a6a;
}

.plan-compare-features i {
  color: var(--brand-red);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

.logo img,
.footer .logo img {
  max-height: 56px;
  width: auto;
}

.sidebar__main-logo img,
.login-logo img {
  max-height: 64px;
  width: auto;
}

/* Enhanced Main Menu Styling */
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0;
}

.menu>li {
  position: relative;
  display: flex;
  align-items: center;
}

.menu>li>a {
  display: block;
  padding: 15px 22px;
  font-size: 16px;
  font-weight: 600;
  color: hsl(var(--heading));
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.menu>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, hsl(var(--base-600)), hsl(var(--base-400)));
  transition: width 0.3s ease;
}

.menu>li>a:hover {
  color: hsl(var(--base-600));
}

.menu>li>a:hover::after {
  width: 100%;
}

.menu>li:hover>a {
  color: hsl(var(--base-600));
}

/* Submenu styling */
.menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.menu>li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu .sub-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu .sub-menu a {
  display: block;
  padding: 12px 20px;
  color: hsl(var(--body));
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.menu .sub-menu a:hover {
  background: hsl(var(--light));
  color: hsl(var(--base-600));
  padding-left: 25px;
}

.menu .sub-menu a i {
  margin-right: 8px;
  color: hsl(var(--base));
}

.menu .sub-menu-divider {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  color: hsl(var(--body));
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Menu */
@media (max-width: 1199px) {
  .menu>li>a {
    padding: 12px 18px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .menu {
    flex-direction: column;
    gap: 0;
  }

  .menu>li {
    display: flex;
    flex-direction: column;
  }

  .menu>li>a {
    padding: 12px 15px;
    border-bottom: 1px solid hsl(var(--light-400));
  }

  .menu .sub-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    background: hsl(var(--light));
    border-radius: 0;
  }

  .menu>li:hover .sub-menu,
  .menu>li.active .sub-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }
}

/* Improved Header & Menu Design */

/* Larger Logo */
.logo img {
  max-width: 200px;
  /* Increased from default */
  max-height: 80px;
  /* Allow more height */
  width: auto;
  transition: all 0.3s ease;
}

/* Enhanced Menu */
.header-bottom {
  padding: 20px 0;
  /* More breathable spacing */
}

.menu {
  gap: 10px;
  /* Spacing between items */
}

.menu li a {
  font-size: 16px;
  /* Slightly larger text */
  padding: 10px 15px;
  /* Bigger touch targets */
  border-radius: 8px;
  /* Rounded corners for hover effect */
  transition: all 0.3s ease;
}

.menu li a:hover,
.menu li a.active {
  color: #8a1738;
  background-color: rgba(138, 23, 56, 0.05);
  /* Subtle background on hover */
}

.menu li a::after {
  display: none;
  /* Remove the underline effect to favor the background pill style */
}

/* CTA Button size adjustment to match */
.menu-btn .btn {
  padding: 12px 24px;
  font-size: 15px;
}

/* Refined Header Mockup Match */

/* Navigation Typography */
.menu li a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  /* Slightly smaller to balance uppercase/bold */
  color: #444;
  /* Darker standard link color */
  letter-spacing: 0.5px;
}

.menu li a:hover,
.menu li a.active {
  color: #8a1738;
  background-color: transparent;
  /* Remove pill background as per mockup */
}

/* Specific button styling for Client Login */
.menu-btn .btn--base-outline.login-link {
  background-color: #8a1738;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 10px 25px;
  border-radius: 50px;
  /* Full rounded pill */
  box-shadow: none;
  /* Cleaner look */
}

.menu-btn .btn--base-outline.login-link:hover {
  background-color: #6d122c;
  /* Darker maroon on hover */
  transform: translateY(-1px);
}

/* Remove underline override if present */
.menu li a::after {
  display: none !important;
}

/* Adjust header vertical alignment */
.header-bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}/* Email Hosting Section Design */
.email-hosting-section {
    background-color: #f4f7fe;
    /* Light blue/gray background */
    padding: 100px 0;
}

.email-hosting-section .section-title {
    color: #0b1f4b;
    /* Dark navy blue from mockup */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.email-hosting-section .section-subtitle {
    color: #555;
    font-size: 18px;
    margin-bottom: 15px;
}

.email-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.email-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.email-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.email-feature i {
    color: #b91c1c;
    /* Maroon/Red icon */
    font-size: 24px;
    margin-top: 2px;
}

.email-feature h5 {
    color: #0b1f4b;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.email-feature p {
    color: #555;
    font-size: 14px;
    margin: 0;
}

/* Image Card */
.email-visual-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(11, 31, 75, 0.08);
    /* Soft shadow */
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.email-visual-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Button override for this section if needed */
.email-hosting-section .btn--base {
    background-color: #c9252d;
    /* Slightly brighter red from mockup */
    border-color: #c9252d;
    padding: 10px 28px;
    font-weight: 600;
}/* Blog Section Design Match */

.blog-section {
    padding: 80px 0;
    background-color: #f9fbfd;
    /* Very light background */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.blog-card__media {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
    aspect-ratio: 16/9;
    /* Consistent image ratio */
    background: #f0f0f0;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images fill the area nicely */
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.05);
}

.blog-date {
    font-size: 12px;
    font-weight: 700;
    color: #e11d48;
    /* Red color from mockup */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date i {
    font-size: 14px;
}

.blog-tag {
    display: inline-block;
    background-color: #ffe4e6;
    /* Light red bg */
    color: #e11d48;
    /* Red text */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card h3 a {
    color: inherit;
    transition: color 0.2s;
}

.blog-card h3 a:hover {
    color: #e11d48;
}

.blog-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Pushes button to bottom */
}

/* Button style adjustment */
.blog-card .btn--base-outline {
    width: 100%;
    text-align: center;
    border-color: #e2e8f0;
    color: #e11d48;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px;
}

.blog-card .btn--base-outline:hover {
    background-color: #e11d48;
    border-color: #e11d48;
    color: #fff;
}
/* Blog Detail Improvements */
.blog-detail-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
}

.blog-detail-media img {
    width: 100%;
    height: 450px; /* Constrained height for better fit */
    object-fit: cover; /* Prevents distortion, crops if needed */
    display: block;
}

@media (max-width: 767px) {
    .blog-detail-media img {
        height: 250px; /* Smaller height for mobile */
    }
}

/* Enhancing rich text content readability */
.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.blog-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #0f172a;
    font-size: 24px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #334155;
}

.blog-content li {
    margin-bottom: 10px;
}
/* =========================================
   Phase 3: Visual Aesthetic Upgrades
   Glassmorphism & Micro-animations
   ========================================= */

/* Glassmorphism Utilities */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

/* Micro-animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered defaults (utility classes for staggering) */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Interactive Elements */
.hover-scale {
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Enhancing existing components */
.domain-search-form .domain-search-field {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.domain-search-form .domain-search-field:focus-within {
    box-shadow: 0 0 0 4px rgba(138, 23, 56, 0.15);
    transform: translateY(-2px);
}

.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:active {
    transform: scale(0.96);
}

/* Dark Mode / Glass Dark Variant (Optional/Future proofing) */

/* Language Switcher - Ultra Premium Design */
.language_switcher {
    position: relative;
}

.language_switcher__caption {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 14px 6px 6px;
    background: linear-gradient(135deg, rgba(138, 23, 56, 0.95) 0%, rgba(164, 28, 67, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
    box-shadow: 0 4px 16px rgba(138, 23, 56, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.language_switcher__caption:hover {
    background: linear-gradient(135deg, rgba(138, 23, 56, 1) 0%, rgba(164, 28, 67, 0.95) 100%);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(138, 23, 56, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.language_switcher.open .language_switcher__caption {
    background: linear-gradient(135deg, rgba(164, 28, 67, 1) 0%, rgba(138, 23, 56, 0.95) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 12px rgba(138, 23, 56, 0.3), inset 0 -1px 3px rgba(0, 0, 0, 0.15);
}

.language_switcher__caption .icon {
    width: 26px;
    height: 26px;
    border-radius= 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25), inset 0 0 0 2px rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.language_switcher__caption:hover .icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.language_switcher__caption .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.language_switcher__caption .text {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-family: 'Manrope', sans-serif;
}

.language_switcher__caption::after {
    content: "\f078";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    margin-left: 4px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.language_switcher.open .language_switcher__caption::after {
    transform: rotate(180deg);
}

.language_switcher__list {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 160px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 12px 48px rgba(138, 23, 56, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.92);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    border: 1px solid rgba(138, 23, 56, 0.08);
}

.language_switcher.open .language_switcher__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language_switcher__item {
    margin: 3px 0;
}

.language_switcher__item:first-child {
    margin-top: 0;
}

.language_switcher__item:last-child {
    margin-bottom: 0;
}

.language_switcher__item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #2d2024;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    font-family: 'Manrope', sans-serif;
}

.language_switcher__item a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #8a1738 0%, #a41c43 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.language_switcher__item a:hover {
    color: #ffffff;
    transform: translateX(4px) scale(1.02);
    box-shadow: 0 4px 12px rgba(138, 23, 56, 0.2);
}

.language_switcher__item a:hover::before {
    opacity: 1;
}

.language_switcher__item a:active {
    transform: translateX(4px) scale(0.98);
}

.language_switcher__item .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    border: 2.5px solid #fff;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.language_switcher__item a:hover .icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.95);
}

.language_switcher__item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .language_switcher__caption .text {
        display: none;
    }
    
    .language_switcher__caption {
        padding: 6px;
    }
}

/* RTL Support Fixes */
[dir="rtl"] .back-to-top {
  right: auto !important;
  left: 30px !important;
}

[dir="rtl"] .whatsapp-float {
  right: auto !important;
  left: 22px !important;
}

[dir="rtl"] .section-heading,
[dir="rtl"] .section-title,
[dir="rtl"] .section-subtitle {
  text-align: center !important;
}

[dir="rtl"] .feature-card {
  text-align: center !important;
}

[dir="rtl"] .hero-title, 
[dir="rtl"] .hero-subtitle {
  text-align: right;
}

[dir="rtl"] .hero-actions {
  justify-content: flex-end;
}
