/* ===================================
   Ddomains - Main Stylesheet
   =================================== */

:root {
  --primary: #1a56db;
  --primary-dark: #1244b8;
  --primary-light: #2563eb;
  --secondary: #f0f7ff;
  --accent: #ff6b35;
  --text-dark: #0f172a;
  --text-muted: #6c757d;
  --bg-light: #f0f7ff;
  --white: #ffffff;
  --border: #bfdbfe;
}

* { box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  background: #fff;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* =============================================================
   ANNOUNCEMENT BAR
   ============================================================= */
.nh-announce {
  background: #673de6;
  color: #fff;
  font-size: 13.5px;
  padding: 10px 16px;
  text-align: center;
  position: relative;
  transition: max-height .35s ease, padding .35s ease, opacity .25s ease;
  overflow: hidden;
  max-height: 80px;
}
.nh-announce.nh-announce--hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}
.nh-announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.nh-announce-text { line-height: 1.5; }
.nh-announce-text strong { font-weight: 700; }
.nh-announce-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  transition: opacity .15s;
}
.nh-announce-link:hover { opacity: .8; color: #fff; text-decoration: underline; }
.nh-announce-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background .15s;
  padding: 0;
}
.nh-announce-close:hover { background: rgba(255,255,255,.28); }
@media (max-width: 600px) {
  .nh-announce { font-size: 12.5px; padding: 9px 44px 9px 16px; text-align: left; }
  .nh-announce-inner { justify-content: flex-start; }
}

/* =============================================================
   SITE HEADER — Hostinger-style  (desktop + mobile)
   ============================================================= */

/* -- Header shell -- */
.nh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow .25s;
}
.nh-header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

/* -- Inner flex row -- */
.nh-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* -- Logo -- */
.nh-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nh-logo-img { height: 36px; width: auto; display: block; }

/* -- Desktop nav links -- */
.nh-nav { flex: 1; }
.nh-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nh-nav-link {
  display: block;
  padding: 8px 13px;
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nh-nav-link:hover        { background: #f3f4f6; color: #111827; text-decoration: none; }
.nh-nav-link--active      { color: #673de6; font-weight: 600; background: #f5f3ff; }
.nh-nav-link--active:hover{ background: #ede9fe; color: #5b21b6; }

/* -- Desktop CTA buttons -- */
.nh-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nh-btn-login {
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #374151;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .15s, color .15s, background .15s;
}
.nh-btn-login:hover { border-color: #673de6; color: #673de6; text-decoration: none; background: #faf5ff; }
.nh-btn-start {
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #673de6;
  border: 1.5px solid #673de6;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.nh-btn-start:hover { background: #5b21b6; border-color: #5b21b6; color: #fff; text-decoration: none; }

/* -- Hamburger (mobile only) -- */
.nh-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  margin-left: auto;
  flex-shrink: 0;
  transition: background .15s;
}
.nh-hamburger:hover { background: #f3f4f6; }
.nh-ham-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* =============================================================
   MOBILE MENU
   ============================================================= */

/* Backdrop */
.nh-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1099;
  opacity: 0;
  transition: opacity .3s;
}
.nh-backdrop--show {
  display: block;
  opacity: 1;
}

/* Menu panel — full-screen, slides in from right */
.nh-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.nh-mobile--open { transform: translateX(0); }

/* Top bar inside mobile menu */
.nh-mobile-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 18px;
  border-bottom: 1px solid #e9eaeb;
  flex-shrink: 0;
}
/* Plain × close — no box, no border */
.nh-mobile-close {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nh-mobile-close:hover { color: #111827; background: #f3f4f6; }

/* Scrollable content area */
.nh-mobile-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 24px;
}

/* Section divider label — gray rule above, title case, small gray text */
.nh-ms-label {
  margin: 0;
  padding: 8px 20px 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #9ca3af;
  border-top: 1px solid #e9eaeb;
  margin-top: 6px;
}

/* Menu item row — large, light weight, NO dividers between items */
.nh-mi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #111827;
  text-decoration: none;
  border-bottom: none;
  transition: background .12s;
  line-height: 1.3;
}
.nh-mi:hover              { background: #f9fafb; text-decoration: none; color: #111827; }
.nh-mi--active            { color: #673de6; font-weight: 500; }
.nh-mi--active:hover      { background: #faf5ff; }
.nh-mi-chevron            { color: #9ca3af; flex-shrink: 0; transition: color .12s; }
.nh-mi:hover .nh-mi-chevron { color: #111827; }

/* CTA card — arrow on the right aligned top */
.nh-cta-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 24px 16px 8px;
  padding: 20px;
  background: #f5f3ff;
  border-radius: 12px;
  text-decoration: none;
  transition: background .15s;
  color: #111827;
}
.nh-cta-card:hover        { background: #ede9fe; text-decoration: none; color: #111827; }
.nh-cta-card-text         { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.nh-cta-card-text strong  { font-size: 16px; font-weight: 700; color: #111827; display: block; }
.nh-cta-card-text span    { font-size: 13px; color: #6b7280; display: block; }
.nh-cta-card-arrow        { flex-shrink: 0; color: #673de6; line-height: 1; padding-top: 2px; }

/* Bottom footer bar */
.nh-mobile-footer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid #e9eaeb;
  background: #fff;
}
.nh-mf-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color .15s;
}
.nh-mf-link:hover { color: #673de6; text-decoration: none; }

/* =============================================================
   RESPONSIVE — show hamburger, hide desktop nav on mobile
   ============================================================= */
@media (max-width: 991px) {
  .nh-nav                    { display: none; }
  .nh-header-cta             { display: none; }
  .nh-hamburger              { display: flex; margin-left: 0; }
  .nh-header-inner           { gap: 0; }
  .nh-currency-header-mobile { display: block; }
}
@media (min-width: 992px) {
  .nh-mobile                 { display: none !important; }
  .nh-backdrop               { display: none !important; }
  .nh-hamburger              { display: none !important; }
  .nh-currency-header-mobile { display: none !important; }
}

/* =============================================================
   ANIMATED HERO SECTIONS
   ============================================================= */

/* -- Keyframes -- */
@keyframes hgFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hgFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hgFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes hgBlob {
  0%, 100% { transform: scale(1) translate(0,0); opacity: .55; }
  33%       { transform: scale(1.08) translate(6px,-8px); opacity: .7; }
  66%       { transform: scale(.94) translate(-4px,6px); opacity: .5; }
}

/* -- Animation utility classes -- */
.hg-anim-1 { animation: hgFadeUp .65s ease both; animation-delay: .05s; }
.hg-anim-2 { animation: hgFadeUp .65s ease both; animation-delay: .18s; }
.hg-anim-3 { animation: hgFadeUp .65s ease both; animation-delay: .30s; }
.hg-anim-4 { animation: hgFadeUp .65s ease both; animation-delay: .42s; }
.hg-anim-5 { animation: hgFadeUp .65s ease both; animation-delay: .54s; }
.hg-img-anim { animation: hgFadeIn .9s ease .15s both; }
.hg-float    { animation: hgFloat 4.5s ease-in-out infinite; }

/* -- Light hero (homepage) -- */
.hg-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 56px;
}
.hg-hero--light {
  background: var(--bg-light);
}

/* -- Inner flex row -- */
.hg-hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.hg-hero-text {
  flex: 1;
  min-width: 0;
}
.hg-hero-img-wrap {
  flex: 0 0 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hg-hero-img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* -- Gradient hero inner pages -- */
.hg-hero--gradient .hg-hero-inner { padding: 0 24px; }

/* -- Decorative blobs -- */
.hg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: hgBlob 7s ease-in-out infinite;
}
.hg-blob--1 {
  width: 340px; height: 340px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, #c7d8ff 0%, transparent 70%);
  animation-delay: 0s;
}
.hg-blob--2 {
  width: 220px; height: 220px;
  bottom: -60px; left: -50px;
  background: radial-gradient(circle, #ddd6fe 0%, transparent 70%);
  animation-delay: 2.5s;
}
.hg-blob--3 {
  width: 300px; height: 300px;
  top: -100px; right: -60px;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
  animation-delay: 0s;
}
.hg-blob--4 {
  width: 200px; height: 200px;
  bottom: -60px; left: -40px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation-delay: 3s;
}

/* -- sub-banner updated to flex layout -- */
.dd-sub-banner-area {
  padding: 68px 0 56px !important;
}
.dd-sub-banner-area .hg-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.dd-sub-banner-area .sub-banner-text {
  text-align: left;
}
.dd-sub-banner-area .sub-banner-btn {
  justify-content: flex-start;
  display: flex;
}

/* -- Responsive -- */
@media (max-width: 991px) {
  .hg-hero-inner {
    flex-direction: column;
    gap: 36px;
    text-align: center;
  }
  .hg-hero-img-wrap {
    flex: none;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    order: -1;
  }
  .dd-sub-banner-area .sub-banner-text { text-align: center; }
  .dd-sub-banner-area .sub-banner-btn  { justify-content: center; }
}
@media (max-width: 600px) {
  .hg-hero { padding: 44px 0 36px; }
  .hg-hero-img-wrap { max-width: 260px; }
  .dd-sub-banner-area { padding: 44px 0 36px !important; }
}

/* ---- Utilities ---- */
.bg-light-3 { background: var(--bg-light) !important; }
.block-title h1, .block-title h2, .block-title h3 { font-size: 28px; color: var(--text-dark); margin-bottom: 10px; }
.block-title p { color: var(--text-muted); margin-bottom: 0; }
.pt-100 { padding-top: 70px; }
.pb-100 { padding-bottom: 70px; }
.mt-50 { margin-top: 40px; }
.mb-60 { margin-bottom: 40px; }
.mb-30 { margin-bottom: 24px; }
.zindex-1 { z-index: 1; }

/* ---- Domain Search Section ---- */
.search_domain_section { padding: 60px 0 50px; }
.search_domain_section .block-title h1 { font-size: 32px; margin-bottom: 6px; }
.domain-search-form { position: relative; max-width: 700px; margin: 0 auto 24px; }
.domain-search-form form { display: flex; background: #fff; border: 2px solid var(--primary); border-radius: 50px; overflow: hidden; box-shadow: 0 4px 20px rgba(26,86,219,.18); }
.domain-search-form input[type="text"] { flex: 1; border: none; outline: none; padding: 14px 24px; font-size: 16px; font-family: 'Open Sans', sans-serif; }
.domain-search-form .btn-form { background: var(--primary); color: #fff; border: none; padding: 14px 32px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s; border-radius: 0 50px 50px 0; white-space: nowrap; }
.domain-search-form .btn-form:hover { background: var(--primary-dark); }
.domain-search-form .btn-form i { margin-right: 6px; }

.domain_tlds_list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.domain_tlds_list li { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 10px 18px; text-align: center; min-width: 90px; box-shadow: 0 2px 8px rgba(26,86,219,.08); transition: transform .2s, box-shadow .2s; }
.domain_tlds_list li:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(26,86,219,.16); }
.domain_tlds_list li figure { margin: 0 0 4px; font-weight: 800; font-size: 15px; color: var(--primary); font-family: 'Nunito', sans-serif; }
.domain_tlds_list li span { font-size: 12px; color: var(--text-muted); }
.domain_tlds_list li span i { font-style: normal; }

/* ---- Discount Pricing Section ---- */
.discount-pricing { padding: 60px 0; }
.discount-item { background: #fff; border: 2px solid var(--border); border-radius: 14px; padding: 32px 24px; text-align: center; position: relative; transition: box-shadow .2s, border-color .2s; }
.discount-item:hover { box-shadow: 0 8px 30px rgba(26,86,219,.16); border-color: var(--primary); }
.category-badge { background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px; top: 14px; right: 14px; text-transform: uppercase; }
.domain-name { margin-bottom: 10px; font-size: 28px; font-weight: 800; color: var(--primary); font-family: 'Nunito', sans-serif; }
.category-item { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5; }
.divider-plus { display: inline-block; font-weight: 800; color: var(--primary); margin: 4px 0; font-size: 18px; }
.cost { font-size: 34px; font-weight: 800; color: var(--primary); font-family: 'Nunito', sans-serif; }
.get-offer { display: inline-block; background: var(--primary); color: #fff; padding: 10px 24px; border-radius: 6px; font-weight: 700; font-size: 14px; transition: background .2s; }
.get-offer:hover { background: var(--primary-dark); color: #fff; }

.ddomain-help { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: #fff; border-radius: 14px; padding: 28px 32px; text-align: center; margin-top: 40px; }
.ddomain-help h3 { color: #fff; margin-bottom: 0; font-size: 20px; }

/* ---- Hosting Plans Tabs ---- */
.discount-pricing-tab .nav-tabs { border: none; gap: 10px; }
.discount-pricing-tab .nav-tabs button { background: #fff; border: 2px solid var(--border); color: var(--text-dark); padding: 10px 28px; border-radius: 30px; font-weight: 700; font-size: 14px; transition: all .2s; cursor: pointer; }
.discount-pricing-tab .nav-tabs button.active, .discount-pricing-tab .nav-tabs button:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---- Hosting Plan Cards ---- */
.ddomains-hosting-plans { border-radius: 20px; overflow: hidden; position: relative; background: #fff; box-shadow: 0 4px 20px rgba(26,86,219,.09); border: 2px solid transparent; transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; height: 100%; }
.ddomains-hosting-plans:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,86,219,.18); }
.ddomains-hosting-plans.second { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(26,86,219,.22); border-color: var(--primary); }
.ddomains-hosting-plans.second:hover { transform: translateY(-14px); }

/* Header bands */
.ddomains-hosting-plans-header { padding: 28px 24px 22px; text-align: center; position: relative; overflow: hidden; }
.ddomains-hosting-plans-header::before { content: ''; position: absolute; bottom: -28px; right: -28px; width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,.1); }
.ddomains-hosting-plans-header::after  { content: ''; position: absolute; top: -20px; left: -20px; width: 70px; height: 70px; border-radius: 50%; background: rgba(255,255,255,.08); }
.ddomains-hosting-plans.first  .ddomains-hosting-plans-header { background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%); }
.ddomains-hosting-plans.second .ddomains-hosting-plans-header { background: linear-gradient(135deg, #1a56db 0%, #7c3aed 100%); }
.ddomains-hosting-plans.third  .ddomains-hosting-plans-header { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); }

/* Plan icon badge */
.plan-header-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; color: #fff; position: relative; z-index: 1; }

/* Plan title & tagline */
.ddomains-hosting-plans-title { font-size: 26px; font-weight: 800; color: #fff; font-family: 'Nunito', sans-serif; margin-bottom: 4px; position: relative; z-index: 1; }
.plan-header-tagline { font-size: 12.5px; color: rgba(255,255,255,.8); margin-bottom: 16px; position: relative; z-index: 1; }

/* Price area */
.ddomains-hosting-plans-price { position: relative; z-index: 1; }
.striketxt { font-size: 14px; color: rgba(255,255,255,.6); text-decoration: line-through; display: block; }
.discount-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,.22); color: #fff; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 20px; margin: 4px 0 6px; }
.discounted-price { font-size: 40px; font-weight: 800; color: #fff; font-family: 'Nunito', sans-serif; line-height: 1; }
.discounted-price i { font-style: normal; font-size: 22px; vertical-align: top; margin-top: 6px; }
.discounted-price span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75); }

/* CTA button */
.btn-primary { display: inline-block; margin-top: 14px; padding: 10px 28px; border-radius: 30px; font-weight: 800; font-size: 14px; transition: all .2s; border: none; position: relative; z-index: 1; }
.ddomains-hosting-plans.first  .btn-primary { background: #fff; color: #0ea5e9; }
.ddomains-hosting-plans.first  .btn-primary:hover { background: #e0f2fe; color: #0284c7; }
.ddomains-hosting-plans.second .btn-primary { background: #fff; color: var(--primary); }
.ddomains-hosting-plans.second .btn-primary:hover { background: #ede9fe; color: #7c3aed; }
.ddomains-hosting-plans.third  .btn-primary { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.ddomains-hosting-plans.third  .btn-primary:hover { background: rgba(255,255,255,.25); }

/* Server location badge */
.dc-location { font-size: 11.5px; color: rgba(255,255,255,.75); padding: 10px 0 0; gap: 5px; position: relative; z-index: 1; }

/* Popular badge */
.ddomains-hosting-plans-best { background: #ff6b35; color: #fff; font-size: 10px; font-weight: 800; padding: 4px 14px; border-radius: 20px; position: absolute; top: 14px; right: 14px; text-transform: uppercase; letter-spacing: .5px; z-index: 2; }

/* Card body */
.ddomains-hosting-plans-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.ddomains-hosting-plans-list { list-style: none; padding: 0; margin: 0 0 8px; }
.ddomains-hosting-plans-list li { padding: 8px 0; font-size: 13.5px; border-bottom: 1px dashed #e2e8f0; display: flex; align-items: center; gap: 10px; color: var(--text-dark); }
.ddomains-hosting-plans-list li:last-child { border-bottom: none; }
.ddomains-hosting-plans-list li i { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.ddomains-hosting-plans.first  .ddomains-hosting-plans-list li i { background: #e0f2fe; color: #0284c7; }
.ddomains-hosting-plans.second .ddomains-hosting-plans-list li i { background: #ede9fe; color: #7c3aed; }
.ddomains-hosting-plans.third  .ddomains-hosting-plans-list li i { background: #dbeafe; color: #1a56db; }

.ddomains-feature-title { font-weight: 800; font-size: 10.5px; text-transform: uppercase; color: var(--text-muted); letter-spacing: .8px; margin: 16px 0 8px; border-top: 1.5px solid var(--border); padding-top: 12px; }
.text-under-line { color: var(--text-muted); font-size: 13px; cursor: pointer; }
span.new { background: #d1fae5; color: #065f46; font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 10px; margin-left: 5px; }

/* ---- Features Section — Icon Boxes ---- */
.feature-section { padding: 70px 0; }
.features-box { display: flex; gap: 20px; padding: 20px 16px !important; border-radius: 12px; transition: box-shadow .2s, background .2s; margin-bottom: 20px; align-items: flex-start; }
.features-box:hover { box-shadow: 0 4px 20px rgba(26,86,219,.1); background: #fff; }
.features-box-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-box-icon i { font-size: 26px; color: var(--primary); }
.features-box-icon img { width: 36px; height: 36px; }
.features-box-content h5 { font-size: 16px; margin-bottom: 6px; color: var(--text-dark); }
.features-box-content p { font-size: 13.5px; margin-bottom: 0; color: var(--text-muted); }

/* ---- Help Section ---- */
.dd-help { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 60px 0; }
.dd-help .block-title h3 { color: #fff; font-size: 24px; }
.dd-help .block-title p { color: rgba(255,255,255,.8); }
.dd-help-box { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,.1); border-radius: 10px; padding: 16px; margin-bottom: 14px; border: 1px solid rgba(255,255,255,.15); }
.dd-help-box-media {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dd-help-box-media i { font-size: 22px; color: #fff; }
.dd-help-box-media img { width: 32px; height: 32px; }
.dd-help-box-content h4 { color: #fff; font-size: 17px; margin-bottom: 4px; }
.dd-help-box-content p { color: rgba(255,255,255,.8); margin-bottom: 0; font-size: 13.5px; }

/* ---- Sub Banner ---- */
.dd-sub-banner-area { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: #fff; padding: 60px 0; }
.sub-banner-text h1 { color: #fff; font-size: 36px; margin-bottom: 14px; }
.sub-banner-text p { color: rgba(255,255,255,.85); font-size: 16px; }
.main-banner-price { font-size: 20px; color: #fff; font-weight: 700; margin-top: 16px; }
.main-banner-price .striketxt { font-size: 16px; color: rgba(255,255,255,.6); text-decoration: line-through; }
.main-banner-price .pric-high-txt { font-size: 36px; font-weight: 800; color: #fff; margin-left: 6px; }
.main-banner-price sup { font-size: 18px; }
.sub-banner-btn { margin-top: 20px; }
.sub-banner-btn .btn { background: #fff; color: var(--primary); font-weight: 700; padding: 12px 28px; border-radius: 6px; font-size: 15px; }
.sub-banner-btn .btn:hover { background: #dbeafe; }

/* ---- Hosting Services ---- */
.dd-hosting-services { padding: 60px 0; }
.dd-hosting-services-box { border: 1px solid var(--border); border-radius: 12px; padding: 24px; height: 100%; transition: box-shadow .2s, transform .2s; margin-bottom: 24px; }
.dd-hosting-services-box:hover { box-shadow: 0 6px 20px rgba(26,86,219,.12); transform: translateY(-2px); }
.dd-hosting-services-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.dd-hosting-services-icon i { font-size: 28px; color: var(--primary); }
.dd-hosting-services-icon img { width: 40px; height: 40px; }
.dd-hosting-services-content h4 { font-size: 17px; margin-bottom: 8px; }
.dd-hosting-services-content p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 0; }

/* ---- Hosting Features Grid ---- */
.dd-hosting-features { padding: 60px 0; }
.single-service-box { text-align: center; padding: 28px 20px; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 24px; transition: box-shadow .2s, transform .2s; }
.single-service-box:hover { box-shadow: 0 6px 24px rgba(26,86,219,.14); transform: translateY(-3px); }
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.service-icon i { font-size: 32px; color: var(--primary); }
.service-icon img { width: 44px; height: 44px; }
.single-service-box h4 { font-size: 16px; margin-bottom: 6px; }
.single-service-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 0; }

/* ---- FAQ ---- */
.dd-faq { padding: 60px 0; }
.dd-faq .accordion-button { font-weight: 700; font-size: 15px; color: var(--text-dark); }
.dd-faq .accordion-button:not(.collapsed) { background: var(--bg-light); color: var(--primary); box-shadow: none; }
.dd-faq .accordion-button:focus { box-shadow: none; border-color: var(--border); }

/* ---- Contact Page ---- */
.contact-section { padding: 70px 0; }
.contact-info-box { background: linear-gradient(160deg, var(--primary), var(--primary-light)); color: #fff; border-radius: 14px; padding: 32px; height: 100%; }
.contact-info-box h3 { color: #fff; margin-bottom: 16px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-item i { font-size: 20px; color: rgba(255,255,255,.75); margin-top: 3px; }
.contact-info-item h5 { color: #fff; margin-bottom: 4px; font-size: 15px; }
.contact-info-item p, .contact-info-item a { color: rgba(255,255,255,.8); margin-bottom: 0; font-size: 13.5px; }
.contact-form-box { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 32px; }
.contact-form-box h3 { margin-bottom: 20px; }
.contact-form-box .form-control { border: 1px solid var(--border); padding: 10px 14px; border-radius: 6px; font-size: 14px; }
.contact-form-box .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,219,.1); }
.contact-form-box .btn-submit { background: var(--primary); color: #fff; font-weight: 700; padding: 12px 32px; border-radius: 6px; border: none; font-size: 15px; cursor: pointer; transition: background .2s; }
.contact-form-box .btn-submit:hover { background: var(--primary-dark); }

/* ---- Footer ---- */
.site-footer { background: #0b1120; color: rgba(255,255,255,.75); }
.footer-top { padding: 50px 0 30px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-heading { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: 13.5px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { margin-bottom: 10px; font-size: 13.5px; color: rgba(255,255,255,.6); }
.footer-contact-list a { color: rgba(255,255,255,.6); }
.footer-contact-list a:hover { color: #fff; }
.footer-contact-list i { color: #60a5fa; }
.footer-bottom { background: rgba(0,0,0,.25); border-top: 1px solid rgba(255,255,255,.07); }
.footer-text p { color: rgba(255,255,255,.5); font-size: 13px; margin-bottom: 4px; }
.footer-text a { color: rgba(255,255,255,.6); }
.footer-text a:hover { color: #fff; }

/* ---- Privacy / TOS Pages ---- */
.page-content-section { padding: 60px 0; }
.page-content-section h2 { font-size: 22px; margin-top: 30px; margin-bottom: 10px; color: var(--primary); }
.page-content-section p { color: var(--text-muted); font-size: 14.5px; }
.page-content-section ul { color: var(--text-muted); font-size: 14.5px; padding-left: 20px; }

/* ---- Logo image ---- */
.site-logo-img  { height: 40px; width: auto; display: block; }
.footer-logo-img { height: 38px; width: auto; display: block; }

/* ---- WhatsApp FAB ---- */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.wa-fab:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}
.wa-icon { width: 24px; height: 24px; flex-shrink: 0; }
.wa-label { line-height: 1; }

@media (max-width: 480px) {
  .wa-fab { padding: 13px; border-radius: 50%; bottom: 20px; right: 20px; }
  .wa-label { display: none; }
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .search_domain_section .block-title h1 { font-size: 24px; }
  .sub-banner-text h1 { font-size: 26px; }
}
@media (max-width: 767px) {
  .domain-search-form form { flex-direction: column; border-radius: 10px; overflow: hidden; }
  .domain-search-form input[type="text"] { border-radius: 10px 10px 0 0; }
  .domain-search-form .btn-form { border-radius: 0 0 10px 10px; }
  .dd-help { padding: 40px 0; }
  .discount-pricing { padding: 40px 0; }
  .feature-section { padding: 40px 0; }
}

/* =============================================================
   CURRENCY SWITCHER
   ============================================================= */
.currency-switcher {
  display: inline-flex;
  align-items: center;
  background: #f0f4ff;
  border: 1.5px solid #d0dbf5;
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
  margin-right: 8px;
}
.currency-btn {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 24px;
  border: none;
  background: transparent;
  color: #5a6a8a;
  cursor: pointer;
  transition: background .2s, color .2s;
  line-height: 1.4;
}
.currency-btn:hover { background: #dde6ff; color: #1a56db; }
.currency-btn--active {
  background: #1a56db;
  color: #fff;
  box-shadow: 0 2px 8px rgba(26,86,219,.25);
}
.currency-btn--active:hover { background: #1244b8; color: #fff; }

/* Mobile header currency select (shown in header bar on mobile, hidden on desktop) */
.nh-currency-header-mobile {
  appearance: none;
  -webkit-appearance: none;
  background: #f0f4ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231a56db' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 8px center;
  border: 1.5px solid #b8c8f5;
  border-radius: 8px;
  padding: 7px 26px 7px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 8px;
  min-width: 88px;
  max-width: 110px;
}

/* Mobile currency switcher inside mobile menu */
.nh-currency-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid #eef0f5;
  border-bottom: 1px solid #eef0f5;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.nh-currency-select {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  background: #f4f6fb url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1.5px solid #d0dbf5;
  border-radius: 8px;
  padding: 8px 36px 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}
.nh-currency-select:focus {
  border-color: var(--primary);
}

/* ---- New Web Hosting Plan Cards ---- */
.hg-plan-cards-wrap { background: #ece8ff; padding: 60px 0; }
.hg-plan-card { background: #fff; border-radius: 20px; padding: 26px 22px 22px; box-shadow: 0 2px 14px rgba(98,72,196,.08); border: 2px solid #ede9fe; transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; height: 100%; }
.hg-plan-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(98,72,196,.17); border-color: #c4b5fd; }
.hg-plan-card.hg-plan-popular { border-color: #7c3aed; box-shadow: 0 8px 32px rgba(124,58,237,.22); }
.hg-plan-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2px; }
.hg-plan-name { font-size: 20px; font-weight: 800; color: #1e1b4b; font-family: 'Nunito', sans-serif; }
.hg-plan-tagline { font-size: 12px; color: #64748b; margin: 3px 0 16px; }
.hg-save-badge { background: #d1fae5; color: #065f46; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; margin-left: 8px; }
.hg-plan-price { font-size: 40px; font-weight: 800; color: #1e1b4b; font-family: 'Nunito', sans-serif; line-height: 1.1; }
.hg-plan-price .per-period { font-size: 14px; font-weight: 500; color: #64748b; }
.hg-plan-orig { font-size: 13px; color: #ef4444; text-decoration: line-through; margin-top: 5px; }
.hg-plan-renewal { font-size: 12px; font-weight: 600; color: #16a34a; margin: 3px 0 18px; }
.hg-plan-btn { display: block; text-align: center; background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%); color: #fff !important; padding: 13px 20px; border-radius: 12px; font-weight: 700; font-size: 15px; transition: all .22s; text-decoration: none !important; margin-bottom: 22px; }
.hg-plan-btn:hover { background: linear-gradient(135deg, #5b21b6 0%, #6d28d9 100%); color: #fff !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(109,40,217,.35); }
.hg-plan-hr { height: 1px; background: #e2e8f0; margin: 0 0 14px; border: none; }
.hg-plan-inc-label { font-weight: 700; font-size: 13px; color: #1e1b4b; margin-bottom: 12px; }
.hg-plan-list { list-style: none; padding: 0; margin: 0; flex: 1; }
.hg-plan-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #334155; padding: 6px 0; border-bottom: 1px solid #f1f5f9; }
.hg-plan-list li:last-child { border-bottom: none; }
.hg-chk { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid #7c3aed; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; color: #7c3aed; font-size: 8px; }
@media (max-width: 767px) { .hg-plan-cards-wrap { padding: 40px 0; } }

/* ---- Trial Tab Styles ---- */
.hg-trial-notice { background: linear-gradient(135deg, #dcfce7, #bbf7d0); border: 1.5px solid #86efac; border-radius: 12px; padding: 10px 16px; text-align: center; margin-bottom: 20px; font-size: 13px; font-weight: 600; color: #15803d; }
.hg-trial-price { font-size: 40px; font-weight: 800; color: #16a34a; font-family: 'Nunito', sans-serif; line-height: 1.1; }
.hg-trial-price .per-period { font-size: 14px; font-weight: 500; color: #64748b; }
.hg-trial-then { font-size: 12px; color: #64748b; margin: 4px 0 18px; }
.hg-trial-btn { display: block; text-align: center; background: linear-gradient(135deg, #16a34a 0%, #15803d 100%); color: #fff !important; padding: 13px 20px; border-radius: 12px; font-weight: 700; font-size: 15px; transition: all .22s; text-decoration: none !important; margin-bottom: 22px; }
.hg-trial-btn:hover { background: linear-gradient(135deg, #15803d 0%, #166534 100%); color: #fff !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,163,74,.35); }
.hg-free-badge { background: #dcfce7; color: #15803d; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; margin-left: 8px; }
.nav-tabs li button.trial-tab { border-color: #16a34a !important; color: #16a34a !important; }
.nav-tabs li button.trial-tab.active, .nav-tabs li button.trial-tab:hover { background: #16a34a !important; color: #fff !important; border-color: #16a34a !important; }

/* ---- Floating Trial Pop-up Banner ---- */
.hg-trial-popup {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 18px;
  box-shadow: 0 12px 48px rgba(124,58,237,.22), 0 2px 8px rgba(0,0,0,.10);
  border: 2px solid #7c3aed; padding: 18px 22px 18px 18px;
  max-width: 340px; width: calc(100vw - 40px);
  transform: translateY(30px); opacity: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
  pointer-events: none;
}
.hg-trial-popup.hg-trial-popup--visible {
  transform: translateY(0); opacity: 1; pointer-events: auto;
}
.hg-trial-popup-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
}
.hg-trial-popup-body { flex: 1; min-width: 0; }
.hg-trial-popup-title { font-size: 15px; font-weight: 800; color: #1e1b4b; font-family: 'Nunito', sans-serif; margin-bottom: 3px; }
.hg-trial-popup-sub { font-size: 12px; color: #64748b; margin-bottom: 10px; line-height: 1.4; }
.hg-trial-popup-btn {
  display: inline-block; background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff !important; text-decoration: none !important;
  padding: 7px 16px; border-radius: 8px; font-size: 13px; font-weight: 700;
  transition: box-shadow .2s;
}
.hg-trial-popup-btn:hover { box-shadow: 0 4px 16px rgba(22,163,74,.4); color: #fff !important; }
.hg-trial-popup-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; font-size: 20px; line-height: 1;
  color: #94a3b8; cursor: pointer; padding: 0 4px;
  transition: color .15s;
}
.hg-trial-popup-close:hover { color: #1e1b4b; }
@media (max-width: 480px) { .hg-trial-popup { bottom: 14px; right: 14px; left: 14px; max-width: none; width: auto; } }
