/* =================================
------------------------------------
  IT Host - Hostcry (Complete Optimized)
  Version: 1.0 - All Essential Styles Preserved
 ------------------------------------
 ====================================*/

/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

html,
body {
    height: 100%;
    font-family: "Montserrat", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

html {
    scroll-padding-top: calc(var(--hostcry-header-height, 68px) + 12px);
    /* Avoid layout viewport width jumping when the vertical scrollbar appears; keeps fixed chrome steadier */
    scrollbar-gutter: stable;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #1c1c1c;
    font-weight: 600;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 30px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 14px;
    color: #585858;
    line-height: 2;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

a {
    text-decoration: none;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

#row1 {
    margin-right: 400px;
    margin-top: 150px;
}

#top-contact-bar {
    background-color: #343a40;
    color: #ffffff;
    padding: 10px;
    text-align: center;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
}

.section-title img {
    margin-bottom: 5px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
}

.section-title p {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #8e8e8e;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title.st-white h2 {
    color: #fff;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.spad {
    padding-top: 105px;
    padding-bottom: 105px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: #fff;
}

.text-black {
    color: #000 !important;
}

.fastsp {
    color: white;
    border: 2px solid #7246b3;
    border-radius: 10px;
    background-color: #7246b3;
    margin-bottom: 40px;
    text-align: center;
    padding: 30px;
}

.fasts {
    color: white;
}

/*---------------------
  Common elements
-----------------------*/

.bg-gradient,
.site-btn.sb-gradient,
.accordion-area .panel-link,
.accordion-area .panel-link.active.collapsed,
.tab-element .nav-tabs .nav-link {
    background: #2e1779;
    background: linear-gradient(to right, #2e1779 0%, #0a0228 100%);
}

/*---------------------
  Buttons
-----------------------*/

.site-btn {
    display: inline-block;
    border: none;
    font-size: 14px;
    font-weight: 400;
    min-width: 186px;
    padding: 17px 25px;
    border-radius: 14px;
    background: #eb2b63;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.site-btn:hover {
    color: #fff;
}

.site-btn.sb-line {
    background-color: transparent;
    color: #eb2b63;
    box-shadow: inset 0 0 0 2px #eb2b63;
}

.site-btn.scolor {
    background-color: #23bed8 !important;
}

/*---------------------
  Preloder
-----------------------*/

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #000;
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }

    50% {
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }

    100% {
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

/*---------------------
  Header Section
-----------------------*/

/* ── Mobile region pill (logo ← [pill] ← hamburger) ────
   Visible only below the desktop nav breakpoint (1131px).
   On desktop the region selector is inside .hostcry-header-actions.
   ─────────────────────────────────────────────────────── */
.hc-mobile-region {
    display: none; /* hidden by default; shown via media query below */
    position: relative;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 9px;
    padding: 6px 10px;
    color: rgba(255,255,255,.9);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: background .18s;
    /* push to right side, before the hamburger */
    margin-left: auto;
}
.hc-mobile-region:hover { background: rgba(255,255,255,.17); }

.hc-mob-region-label { letter-spacing: .3px; }

/* Dropdown */
.hc-mob-region-drop {
    display: none;
    position: fixed;          /* fixed so it never clips inside the header */
    top: 60px;
    right: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,.18);
    min-width: 170px;
    z-index: 99999;
    overflow: hidden;
}
.hc-mob-region-drop.is-open { display: block; }

.hc-mob-region-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
}
.hc-mob-region-opt:hover    { background: #f5f5f5; color: #1e293b; }
.hc-mob-region-opt--active  { background: #f0f0ff; }
.hc-mob-region-opt span     { font-size: 11px; color: #94a3b8; font-weight: 500; margin-left: auto; }

/* Show the pill below the desktop breakpoint */
@media (max-width: 1131px) {
    .hc-mobile-region { display: inline-flex; }
}

.header-section.hostcry-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
    padding: 0;
    /* Same palette + angle as .modern-hero-section; slightly denser at top for controls */
    background: linear-gradient(135deg, rgba(21, 8, 47, 0.88) 0%, rgba(45, 27, 105, 0.78) 50%, rgba(26, 11, 61, 0.85) 100%);
    color: #fff;
    border-bottom: 3px solid transparent;
    /* Match hero / footer accent so the bar reads as one surface with the page */
    border-image: linear-gradient(90deg, #eb2b63, #8b5cf6, #eb2b63) 1;
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    backdrop-filter: blur(14px) saturate(1.15);
    overflow: visible;
    /* Do not add transform here: it creates a fixed-position containing block and breaks the full-screen mobile .nav-warp drawer */
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.header-section.hostcry-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Same radial language as .hero-background-elements (+ cool indigo hint, still in-family) */
    background:
        radial-gradient(circle at 20% 88%, rgba(235, 43, 99, 0.12) 0%, transparent 52%),
        radial-gradient(circle at 78% 12%, rgba(139, 92, 246, 0.14) 0%, transparent 50%),
        radial-gradient(circle at 50% 40%, rgba(99, 102, 241, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.025) 0%, transparent 70%);
    pointer-events: none;
}

.header-section.hostcry-header.is-scrolled {
    background: linear-gradient(135deg, #15082f 0%, #2d1b69 50%, #1a0b3d 100%);
    /* Keep blur identical to the default state so scroll-state toggles do not repaint the filter (avoids “jitter”) */
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    backdrop-filter: blur(14px) saturate(1.15);
    box-shadow: 0 12px 36px rgba(8, 3, 22, 0.55);
}

.hostcry-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    margin: 0;
    flex: 0 0 auto;
}

.site-logo img {
    display: block;
    height: auto;
}

.nav-switch {
    display: none;
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    margin: 0;
    box-sizing: border-box;
}

.nav-warp {
    float: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex: 1 1 auto;
    min-width: 0;
}

/* Full-screen mobile drawer wrappers; desktop uses display:contents so menu + actions stay in .nav-warp flex row */
.mobile-nav-drawer-head {
    display: none;
}

.mobile-nav-drawer-scroll {
    display: contents;
}

.mobile-nav-promo {
    display: none;
}

@media (min-width: 1132px) {
    .mobile-mega-back {
        display: none !important;
    }
}

.main-menu {
    list-style: none;
    float: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.main-menu li {
    display: block;
}

.main-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    padding: 10px 12px;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease, text-shadow 0.2s ease, box-shadow 0.2s ease;
}

.header-section.hostcry-header:not(.is-scrolled) .main-menu > li > a {
    text-shadow: 0 1px 8px rgba(2, 6, 23, 0.35);
}

.main-menu > li > a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.main-menu > li > a:focus-visible {
    outline: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.main-menu > li.is-active > a,
.main-menu > li.mega-menu-item.is-active > a {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.26);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.main-menu > li > a i {
    font-size: 11px;
    opacity: 0.75;
}

.hostcry-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.hostcry-locale {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    user-select: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hostcry-locale:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.header-section.hostcry-header:not(.is-scrolled) .hostcry-locale,
.header-section.hostcry-header:not(.is-scrolled) .user-panel--outline a {
    text-shadow: 0 1px 8px rgba(2, 6, 23, 0.35);
}

.header-section.hostcry-header:not(.is-scrolled) .nav-switch {
    text-shadow: 0 1px 8px rgba(2, 6, 23, 0.35);
}

.header-section.hostcry-header.is-scrolled .main-menu > li > a,
.header-section.hostcry-header.is-scrolled .hostcry-locale,
.header-section.hostcry-header.is-scrolled .user-panel--outline a {
    text-shadow: none;
}

.header-section.hostcry-header.is-scrolled .nav-switch {
    text-shadow: none;
}

.hostcry-locale-flag {
    border-radius: 2px;
}

.user-panel {
    float: none;
    margin: 0;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 0;
    line-height: 1;
    border-radius: 0;
}

.user-panel--outline a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.user-panel--outline a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
}

.user-panel a {
    color: inherit;
}

/*---------------------
  Mega Menu Styles
-----------------------*/

.mega-menu-item {
    position: relative;
}

.mega-menu-item > a i {
    transition: transform 0.25s ease;
}

.mega-menu-item:hover > a i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    width: min(1100px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 2100;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.mega-menu--wide {
    width: min(1100px, calc(100vw - 32px));
}

.mega-menu--medium {
    width: min(900px, calc(100vw - 32px));
}

.mega-menu-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

.mega-menu-content {
    padding: 22px 22px 18px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 22px;
}

.mega-menu-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu-column {
    padding: 0;
}

.mega-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.55);
    margin: 0 0 10px;
}

.mega-kicker--spaced {
    margin-top: 18px;
}

.mega-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-link {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.18s ease;
}

.mega-link:hover {
    background: rgba(79, 70, 229, 0.06);
}

.mega-link:focus-visible {
    outline: none;
    background: rgba(79, 70, 229, 0.1);
    box-shadow: inset 0 0 0 2px rgba(79, 70, 229, 0.25);
}

.mega-link-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    flex: 0 0 auto;
    margin-top: 2px;
}

.mega-link-icon i {
    font-size: 14px;
}

.mega-link-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.mega-link-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
}

.mega-link-desc {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(55, 65, 81, 0.85);
}

/* Mega Menu Arrow */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

/*---------------------
  Hero Section
-----------------------*/

.hero-section {
    height: 835px;
    overflow: hidden;
    padding-top: calc(var(--hostcry-header-height, 72px) + 10px);
    box-sizing: border-box;
}

@media screen and (max-width: 550px) {
    .hero-section {
        height: 500px !important;
    }
}

@media screen and (min-width: 700px) {
    .hero-content {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        position: relative;
    }

    .hero-content h2,
    .hero-content h1 {
        font-size: 90px;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 1;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 40px;
    }

    .hero-rocket {
        position: absolute;
        bottom: 8px;
        right: -198px;
    }

    .hero-rocket img {
        position: relative;
        animation: rocket 2s linear infinite;
    }

    @keyframes rocket {
        0% {
            left: 20px;
            bottom: 20px;
        }

        25% {
            left: -20px;
            bottom: 20px;
        }

        50% {
            left: -20px;
            bottom: 0px;
        }

        75% {
            left: 0px;
            bottom: 0px;
        }

        100% {
            left: 20px;
            bottom: 20px;
        }
    }
}

/*---------------------
  Features Section
-----------------------*/

.features-section .section-title {
    margin-bottom: 130px;
}

.features-section .container {
    margin-bottom: -70px;
}

.feature-item {
    text-align: center;
    margin-bottom: 55px;
}

.feature-item .ft-icon {
    display: inline-flex;
    width: 87px;
    height: 87px;
    background: #eb2b63;
    font-size: 43px;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 40px;
}

.feature-item h4 {
    margin-bottom: 28px;
}

.feature-item.fi-center-top .ft-icon {
    transform-origin: bottom center;
    transform: scale(1.65);
}

.feature-item.fi-center-top .ft-icon i {
    transform: scale(0.8);
}

/*---------------------
  Domain Search Section
-----------------------*/

.domain-form-warp {
    max-width: 993px;
    margin: 0 auto;
}

/*---------------------
  Apps/Technology Cards
-----------------------*/

.apps-grid-section {
    background: #f8f9fa;
    color: #0f172a;
}

/* Light sections: override inherited light text / .section-title p defaults so headings & leads stay readable */
.apps-grid-section .section-title h2,
.why-apps-hosting .section-title h2 {
    color: #0f172a !important;
}

.apps-grid-section .section-title p.lead,
.why-apps-hosting .section-title p.lead {
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    color: #475569 !important;
}

.app-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.app-icon {
    text-align: center;
    margin-bottom: 20px;
}

.app-icon i {
    font-size: 3rem;
    color: #007bff;
}

.app-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.app-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.app-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.app-features li {
    padding: 5px 0;
    color: #555;
}

.app-features i {
    color: #28a745;
    margin-right: 8px;
}

.app-pricing {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
    margin-top: 20px;
}

.app-pricing .price {
    font-size: 1.1rem;
    color: #333;
}

.why-apps-hosting {
    background: #e8edf5;
    color: #0f172a;
}

.why-apps-hosting .benefit-item h4 {
    color: #0f172a !important;
}

.why-apps-hosting .benefit-item p {
    color: #475569 !important;
}

.benefit-item {
    padding: 20px;
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: #007bff;
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .app-card {
        margin-bottom: 30px;
    }

    .app-icon i {
        font-size: 2.5rem;
    }
}

.domain-form-warp p {
    font-size: 12px;
    color: #fff;
    opacity: 0.26;
    margin-bottom: 0;
    line-height: 1;
}

.domain-search-form {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.domain-search-form input {
    width: calc(100% - 239px);
    height: 59px;
    font-size: 14px;
    border: none;
    background: #fff;
    border-radius: 14px;
    display: inline-block;
    padding: 0 31px;
    margin-right: 5px;
}

.domain-search-form .site-btn {
    height: 59px;
    min-width: 229px;
}

.domain-search-form.df-white-bg input {
    background: #f5f1f8;
}

/* Domain Search Results */
.domain-results {
    margin-top: 50px;
}

.domain-loading-container {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.domain-loading-content {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.domain-unavailable-card,
.domain-available-card {
    display: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(46, 23, 121, 0.15);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.domain-unavailable {
    padding: 16px 20px;
    text-align: center;
    background: #f8fafc;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.domain-available {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #51cf66, #40c057);
    color: white;
}

.domain-search-header {
    padding: 20px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(235, 43, 99, 0.9));
    color: white;
    font-weight: 700;
    font-size: 24px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.domain-search-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.domain-search-header:hover::before {
    left: 100%;
}

.search-body {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 0 0 16px 16px;
}

.body-other-tld {
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.98);
    transition: background-color 0.2s ease;
    overflow: hidden;
    word-wrap: break-word;
}

.body-other-tld:last-child {
    border-bottom: none;
    border-radius: 0 0 16px 16px;
}

.body-other-tld:hover {
    background: rgba(248, 250, 252, 0.98);
}

/* Enhanced invalid domain card styling */
.domain-invalid-card {
    border: 2px solid #fecaca;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.1);
    overflow: hidden;
}

.domain-invalid-card .domain-search-header {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
    font-weight: 600;
    padding: 20px 25px;
    border-bottom: 1px solid #fecaca;
    font-size: 18px;
}

.domain-invalid-card .search-body {
    background: #ffffff;
    padding: 25px;
}

/* Mobile responsive styles for invalid domain */
@media (max-width: 768px) {
    .domain-invalid-card .domain-search-header {
        padding: 15px 20px;
        font-size: 16px;
    }

    .domain-invalid-card .search-body {
        padding: 20px 15px;
    }

    .domain-invalid-card .searched-domain {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .domain-invalid-card .domain-search-header {
        padding: 12px 15px;
        font-size: 15px;
    }

    .domain-invalid-card .search-body {
        padding: 15px 12px;
    }

    .domain-invalid-card .searched-domain {
        font-size: 13px;
    }
}

/* On-demand TLD availability checker styles */
.check-availability-btn {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.check-availability-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.check-availability-btn:disabled {
    transform: none;
    cursor: not-allowed;
    opacity: 0.7;
}

.tld-pricing-info {
    text-align: left;
}

.tld-pricing-info .tld-price {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.availability-info {
    text-align: left;
}

.availability-info p {
    margin: 0;
    line-height: 1.2;
}

.availability-info .text-success {
    color: #10b981 !important;
}

.availability-info .text-danger {
    color: #ef4444 !important;
}

/* Apps Hosting Start for Home */
.apps-hosting-section {
    background: #f8f9fa;
}

.app-hosting-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.app-hosting-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(235, 43, 99, 0.15);
}

.app-icon {
    text-align: center;
    margin-bottom: 25px;
}

.app-icon i {
    font-size: 4rem;
    color: #eb2b63;
    background: linear-gradient(135deg, #eb2b63, #d91e5b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-content h3 {
    color: #1c1c1c;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.5rem;
}

.app-description {
    color: #585858;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.app-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.app-features li {
    padding: 8px 0;
    color: #585858;
    font-size: 0.95rem;
}

.app-features i {
    color: #eb2b63;
    margin-right: 10px;
    font-weight: bold;
}

.app-pricing {
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #e9ecef;
    margin-top: 20px;
}

.app-pricing .price {
    font-size: 1.2rem;
    color: #1c1c1c;
    font-weight: 600;
}

.btn-block {
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #eb2b63;
    color: white;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-block:hover {
    background: #d91e5b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 43, 99, 0.3);
    text-decoration: none;
}

@media (max-width: 768px) {
    .app-hosting-card {
        margin-bottom: 30px;
    }

    .app-icon i {
        font-size: 3rem;
    }

    .app-content h3 {
        font-size: 1.3rem;
    }
}

/* Apps Hosting End For Home */

/* Mobile responsive styles for on-demand TLD checker */
@media (max-width: 768px) {
    .body-other-tld {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .body-other-tld .searched-domain-price {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .check-availability-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }

    .tld-pricing-info,
    .availability-info {
        width: 100%;
    }

    .btn.btn-success.btn-sm {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    .body-other-tld {
        gap: 12px;
        padding: 15px 20px;
    }

    .body-other-tld .searched-domain-price {
        gap: 10px;
    }

    .check-availability-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .tld-pricing-info .tld-price {
        font-size: 13px;
    }

    .availability-info p {
        font-size: 13px;
    }

    .btn.btn-success.btn-sm {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Alternative domain section base styles */
.alternative-domain {
    background: linear-gradient(135deg, #fefefe, #f8fafc) !important;
    border-top: 3px solid #3b82f6 !important;
    border-radius: 0 0 16px 16px !important;
    padding: 25px !important;
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
}

/* Alternative domain item styling */
.alternative-item {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

.alternative-item.recommended {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #0ea5e9;
}

.alternative-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Alternative domain item inner content */
.alternative-item>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
}

.alternative-item>div>div:first-child {
    flex: 1;
    min-width: 300px;
}

.alternative-item>div>div:last-child {
    flex-shrink: 0;
}

/* Alternative domain responsive styles */
@media (max-width: 768px) {
    .alternative-domain {
        padding: 20px !important;
        border-radius: 0 !important;
    }

    .alternative-item {
        padding: 15px !important;
        margin-bottom: 12px !important;
        border-radius: 8px !important;
    }

    .alternative-item>div {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .alternative-item .btn {
        margin-top: 15px !important;
        margin-left: 0 !important;
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .alternative-domain {
        padding: 15px !important;
    }

    .alternative-item {
        padding: 12px !important;
        margin-bottom: 10px !important;
    }

    .alternative-item h4 {
        font-size: 16px !important;
    }

    .alternative-item span {
        font-size: 14px !important;
    }

    .alternative-item .btn {
        padding: 10px 16px !important;
        font-size: 12px !important;
    }
}

/* Body Other TLD Container Styles */
.body-other-tld {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.body-other-tld:hover {
    background-color: #f8fafc;
}

.body-other-tld .searched-domain {
    flex: 1;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.body-other-tld .searched-domain-price {
    flex-shrink: 0;
    margin-left: 20px;
}

/* Mobile responsive styles for TLD loading */
@media (max-width: 768px) {
    .body-other-tld {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .body-other-tld .searched-domain {
        font-size: 14px;
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
        width: 100%;
    }

    .body-other-tld .searched-domain-price {
        width: 100%;
        margin-left: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .body-other-tld .searched-domain-price p {
        font-size: 14px;
        margin: 0;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .body-other-tld {
        padding: 12px 15px;
    }

    .body-other-tld .searched-domain {
        font-size: 13px;
    }

    .body-other-tld .searched-domain-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .body-other-tld .searched-domain-price p {
        font-size: 13px;
    }

    .body-other-tld .buy-now {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 80px;
    }
}

.searched-domain {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.searched-domain img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.searched-domain-price {
    width: 300px;
}

.searched-domain-price>p {
    font-size: 24px;
    font-weight: bold;
    color: #1f0544;
}

.buy-now {
    background: linear-gradient(135deg, #eb2b63, #d91a54);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(235, 43, 99, 0.3);
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
}

.buy-now:hover {
    background: linear-gradient(135deg, #d91a54, #c11845);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 43, 99, 0.4);
}

.searched-domain-price {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 60px;
}

.searched-domain-price>p {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.searched-domain-price>.buy-now {
    padding: 10px 20px;
    color: white;
    background: linear-gradient(135deg, #eb2b63, #d91a54);
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(235, 43, 99, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    flex-shrink: 0;
}

.searched-domain-price>.buy-now:hover {
    color: white;
    background: linear-gradient(135deg, #d91a54, #c11845);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 43, 99, 0.5);
    text-decoration: none;
}

.other-tlds {
    font-weight: bold;
    font-size: 24px;
    padding: 15px 40px;
}

.invalid-domain {
    background-color: #eb2b64 !important;
}

/* Domain Search TLDs */
.domain-search-tlds {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.domain-search-tlds li {
    background: rgba(235, 43, 99, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: #eb2b63;
    transition: all 0.3s ease;
}

.domain-search-tlds li:hover {
    background: #eb2b63;
    color: #fff;
    transform: translateY(-2px);
}

.tld {
    font-weight: bold;
    color: #2e1676;
}

.register {
    color: #666;
    font-size: 14px;
}

/*---------------------
  Progress Bars
-----------------------*/

.single-progress-item {
    margin-bottom: 28px;
}

.single-progress-item:last-child {
    margin-bottom: 0;
}

.single-progress-item p {
    font-size: 16px;
    color: #000000;
    line-height: 1;
    margin-bottom: 15px;
}

.single-progress-item .progress-bar-style {
    height: 8px;
    width: 100%;
    background: #eef6f9;
    border-radius: 15px;
}

.single-progress-item .progress-bar-style .bar-inner {
    position: relative;
    height: 100%;
    border-radius: 15px;
}

.single-progress-item .progress-bar-style .bar-inner span {
    position: absolute;
    bottom: 100%;
    right: 0;
    font-size: 16px;
    color: #000;
    line-height: 1;
    margin-bottom: 15px;
}

/*---------------------
  Testimonials
-----------------------*/

.testimonials-slider .owl-dots {
    display: flex;
    position: absolute;
    bottom: 37px;
    left: 0;
}

.testimonials-slider .owl-dots .owl-dot {
    display: inline-flex;
    width: 11px;
    height: 11px;
    margin-right: 7px;
    border-radius: 50%;
    background: #eef6f9;
}

.testimonials-slider .owl-dots .owl-dot.active {
    background: #eb2b63;
}

.testimonial-item {
    overflow: hidden;
}

.testimonial-item .ti-content {
    background: #eef6f9;
    padding: 48px 35px 45px 38px;
    border-radius: 15px;
    margin-bottom: 42px;
    position: relative;
}

.testimonial-item .ti-content p {
    font-size: 15px;
    margin-bottom: 0;
}

.testimonial-item .ti-content:after {
    position: absolute;
    content: "";
    top: 100%;
    right: 34px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 17px solid #eef6f9;
}

.testimonial-item .ti-author-pic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    float: right;
    margin-left: 35px;
}

.testimonial-item .ti-author {
    text-align: right;
    overflow: hidden;
    padding-top: 25px;
}

.testimonial-item .ti-author h6 {
    font-weight: 700;
}

.testimonial-item .ti-author span {
    color: #eb2b63;
    font-weight: 700;
}

/*---------------------
  Pricing Section
-----------------------*/

.pricing-section .container {
    margin-bottom: -40px;
}

.pricing-plan {
    margin-bottom: 40px;
}

.pricing-plan .pricing-title {
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #7246b3 0%, #431483 100%);
}

.pricing-plan .pricing-title h4 {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.pricing-plan .pricing-body {
    background: #eef6f9;
    text-align: center;
    padding: 5px 68px 52px;
    border-radius: 14px;
}

.pricing-plan .pricing-body h2 {
    font-size: 60px;
    color: #585858;
    font-weight: 400;
    line-height: 1;
}

.pricing-plan .pricing-body h2 span {
    font-size: 14px;
}

.pricing-plan .pricing-body ul {
    list-style: none;
    padding-bottom: 21px;
}

.pricing-plan .pricing-body ul li {
    color: #585858;
    line-height: 1;
    margin-bottom: 20px;
}

.pricing-plan .pricing-body .site-btn {
    width: 100%;
    padding: 22px;
    line-height: 1.1;
}

.pricing-plan.gold-plan .pricing-title {
    background: #eb2b63;
}

.pricing-plan.gold-plan .pricing-body {
    box-shadow: inset 0 0 0 2px #eb2b63, 0px 32px 43px rgba(0, 0, 0, 0.35);
}

/*---------------------
  Service Section
-----------------------*/

.service-box:nth-child(1) {
    background: linear-gradient(to bottom, #0a0228 0%, #2e1779 100%);
}

.service-box:nth-child(2) {
    background: #2d1678;
}

.service-box:nth-child(3) {
    background: #422b8f;
}

.service-box-text {
    padding: 145px 80px 155px;
    height: 100%;
}

.service-box-text h4 {
    margin-bottom: 40px;
}

.service-box-text p {
    margin-bottom: 35px;
}

.service-box-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 50px 30px;
}

/*---------------------
  Cards
-----------------------*/

.card {
    padding: 10px;
    border-radius: 5px !important;
}

.card-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.card-link-top>h5 {
    color: #eb2b63;
    text-decoration: underline;
    font-weight: 700;
}

.small-plans {
    margin-top: -80px;
}

/*---------------------
  Package Period Button
-----------------------*/

.package-period-btn {
    background: #f8f9fa;
    padding: 6px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.package-period-btn>span {
    color: black;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.package-period-btn>span.selected {
    background-color: rgb(235, 43, 99);
    color: white;
    border-radius: 10px;
}

/*---------------------
  Plan Switcher (Legacy - Removed)
-----------------------*/
/* Old plan-switcher styles removed - using modern-plan-switcher.css instead */

/*---------------------
  Banner Section
-----------------------*/

.banner-section {
    padding-top: 113px;
    padding-bottom: 96px;
}

.banner-text h3 {
    font-weight: 400;
    margin-bottom: 3px;
}

.banner-text p {
    margin-bottom: 0;
    opacity: 0.4;
}

/*---------------------
  Page Top Section
-----------------------*/

.page-top-section {
    height: 404px;
    padding-top: 215px;
}

/* Old SEO checker banner styles removed - now using dedicated seo-checker-banner.css */

.page-top-section h2 {
    color: #fff;
}

.banner-container>h1 {
    font-size: 36px;
    color: white;
}

.site-breadcrumb {
    color: #fff;
    opacity: 0.37;
    font-size: 14px;
}

.site-breadcrumb a {
    color: #fff;
}

/*---------------------
  MODERN FOOTER STYLES
  Used in: layout/partials/footer.blade.php
-----------------------*/

/* Modern Footer Section */
.modern-footer-section {
    background: linear-gradient(135deg, #1a0b3d 0%, #2d1b69 50%, #1a0b3d 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #eb2b63, #8b5cf6, #eb2b63) 1;
}

.modern-footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(235, 43, 99, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.modern-footer-section .container {
    position: relative;
    z-index: 2;
}

/* Footer Main Content */
.footer-main-content {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* Footer Bottom Section */
.footer-bottom {
    padding-bottom: 30px;
}

/* Footer Widget Styling */
.footer-widget {
    margin-bottom: 40px;
    padding: 0 15px;
}

.footer-widget.company-info {
    padding-right: 25px;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 25px;
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Company Description */
.company-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Widget Titles */
.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #eb2b63, #8b5cf6);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(235, 43, 99, 0.3);
}

.widget-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.3px;
}

.footer-links a:hover {
    color: #eb2b63;
    transform: translateX(8px);
    text-shadow: 0 0 8px rgba(235, 43, 99, 0.3);
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: #eb2b63;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-links li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #eb2b63, transparent);
    transition: width 0.3s ease;
}

.footer-links li:hover::after {
    width: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 1;
}

.social-link i {
    color: white;
    font-size: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1.1);
}

.social-link.youtube:hover::before {
    background: #ff0000;
}

.social-link.facebook:hover::before {
    background: #1877f2;
}

.social-link.instagram:hover::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.twitter:hover::before {
    background: #1da1f2;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Country Selector */
.country-selector {
    position: relative;
    margin-bottom: 25px;
}

/* Contact Support Section */
.contact-support-section {
    margin-top: 25px;
}

.contact-support-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.contact-item-compact i {
    color: #eb2b63;
    font-size: 14px;
    min-width: 16px;
}

.contact-value-compact {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-value-compact:hover {
    color: #eb2b63;
}

.selected-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    max-width: 150px;
}

.selected-option:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.selected-option .flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.selected-option span {
    flex: 1;
    font-size: 14px;
    color: white;
}

.selected-option i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 11, 61, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-top: 5px;
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-options li {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
    font-size: 14px;
    color: white;
}

.dropdown-options li:hover {
    background: rgba(235, 43, 99, 0.2);
}

.dropdown-options li .flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

/* Contact Info */
.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-item i {
    color: #eb2b63;
    font-size: 16px;
    margin-top: 2px;
    min-width: 16px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: #eb2b63;
}

/* Legal Links */
.legal-links {
    margin-top: 20px;
}

.legal-links-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-links .footer-links {
    margin-top: 0;
}

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

.legal-links .footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.legal-links .footer-links a:hover {
    color: #eb2b63;
    transform: translateX(5px);
}

.legal-links .footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #eb2b63;
    transition: width 0.3s ease;
}

.legal-links .footer-links a:hover::before {
    width: 10px;
}

/* Payment Methods */
.payment-methods {
    text-align: center;
    padding: 40px 0 20px;
    position: relative;
}

.payment-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #eb2b63, #8b5cf6, #eb2b63, transparent);
    border-radius: 1px;
}

.payment-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.payment-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #eb2b63, #8b5cf6);
    border-radius: 1px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.payment-icon {
    height: 40px;
    width: auto;
    filter: brightness(0.9) saturate(0.8);
    transition: all 0.4s ease;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.payment-icon:hover {
    filter: brightness(1.2) saturate(1.1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(235, 43, 99, 0.2);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(235, 43, 99, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-footer-section {
        padding: 50px 0 20px;
    }

    .footer-widget.company-info {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .social-links {
        justify-content: center;
    }

    .payment-icons {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .modern-footer-section {
        padding: 40px 0 20px;
    }

    /* Center logo on mobile */
    .footer-logo {
        width: 120px;
        display: block;
        margin: 0 auto 25px;
    }

    /* Center company description */
    .company-description {
        text-align: center;
    }

    /* Center widget titles and their underlines */
    .widget-title {
        font-size: 16px;
        text-align: center;
    }

    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .widget-title::before {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Center footer links */
    .footer-links {
        text-align: center;
    }

    /* Center contact support section */
    .contact-support-section {
        text-align: center;
    }

    .contact-support-title {
        text-align: center;
    }

    .contact-info-compact {
        align-items: center;
    }

    /* Center legal links section */
    .legal-links {
        text-align: center;
    }

    .legal-links-title {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-item i {
        margin-top: 0;
    }

    .inline-links {
        justify-content: center;
    }

    .payment-icons {
        gap: 15px;
        margin-top: 15px;
    }

    .payment-icon {
        height: 55px;
        width: auto;
        padding: 5px 8px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-width: none;
    }

    .selected-option {
        max-width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .modern-footer-section {
        padding: 30px 0 15px;
    }

    .company-description {
        text-align: center;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link i {
        font-size: 14px;
    }

    .contact-item {
        padding: 12px;
    }

    .payment-icons {
        gap: 8px;
    }

    .payment-icon {
        height: 25px;
    }
}

/* Animation for dropdown */
.dropdown-options.show {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for footer sections */
.footer-widget:hover .widget-title::after {
    width: 50px;
    transition: width 0.3s ease;
}

/* END OF MODERN FOOTER STYLES */

/* Hostinger-style footer layout overrides */
.hostinger-style-footer {
    padding-bottom: 34px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(5, minmax(0, 1fr));
    gap: 28px;
}

.footer-links-column {
    min-width: 0;
}

.footer-brand-column .footer-logo {
    width: 148px;
    max-width: 100%;
    margin-bottom: 10px;
}

.footer-brand-column .company-description {
    margin-bottom: 0;
    max-width: 235px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-compact {
    margin-top: 10px;
}

.footer-contact-title {
    font-size: 11px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.35;
}

.footer-contact-item i {
    color: rgba(255, 255, 255, 0.7);
    width: 12px;
    font-size: 11px;
    text-align: center;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item a:hover {
    color: #ff7fae;
}

.hostinger-style-footer .widget-title {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.9px;
    margin-bottom: 12px;
    padding-bottom: 0;
}

.hostinger-style-footer .widget-title::before,
.hostinger-style-footer .widget-title::after {
    display: none;
}

.hostinger-style-footer .footer-links li {
    margin-bottom: 6px;
}

.hostinger-style-footer .footer-links li::after,
.hostinger-style-footer .footer-links a::before {
    display: none;
}

.hostinger-style-footer .footer-links a {
    padding: 2px 0;
    font-size: 13px;
    transform: none !important;
    transition: color 0.2s ease;
}

.hostinger-style-footer .footer-links a:hover {
    color: #ff7fae;
    opacity: 1;
    text-shadow: none;
}

.footer-utility-row {
    padding: 8px 0 18px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.footer-utility-left,
.footer-utility-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-region-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 0;
    font-size: 14px;
    color: inherit;
}

.footer-region-label .flag {
    width: 24px;
    height: auto;
    border-radius: 2px;
}

.footer-country-selector {
    margin-bottom: 0;
}

.footer-country-selector .selected-option {
    max-width: 180px;
    min-width: 152px;
    padding: 8px 12px;
}

.footer-country-selector .dropdown-options {
    min-width: 180px;
}

.footer-utility-right {
    flex-direction: column;
    align-items: flex-end;
}

.footer-utility-row .social-links {
    margin: 0;
}

.footer-utility-row .social-link {
    width: 32px;
    height: 32px;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.footer-utility-row .social-link i {
    font-size: 13px;
}

.footer-utility-row .social-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 127, 174, 0.55);
}

.footer-utility-row .social-link:hover i {
    color: #ff7fae;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    transition: color 0.2s ease;
}

.footer-policy-links a:hover {
    color: #ff7fae;
}

.footer-utility-row .payment-icons {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 0;
}

.footer-utility-row .payment-icon {
    height: 30px;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: none;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    filter: none;
}

.footer-utility-row .payment-icon:hover {
    transform: translateY(-1px);
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
    filter: none;
}

.footer-meta-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-copyright,
.footer-vat-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .footer-links-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-brand-column {
        grid-column: span 3;
    }

    .footer-brand-column .company-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .footer-brand-column {
        grid-column: span 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand-column .company-description {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-compact {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-utility-row,
    .footer-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-utility-right {
        align-items: flex-start;
    }

    .footer-country-selector .selected-option {
        max-width: 100%;
    }

    .footer-contact-compact {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-column {
        grid-column: span 1;
    }
}
/* Keeping only essential footer bottom section styles */

.footer-section {
    background: #1b043b;
    overflow: hidden;
    padding: 20px 0px;
}

.footer-menu {
    list-style: none;
    float: right;
}

.footer-menu li {
    display: inline;
}

.footer-menu li a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
    margin-left: 40px;
}

.footer-menu li a:hover {
    color: #eb2b63;
}

.copyright {
    float: left;
    color: #fff;
    font-size: 14px;
    padding-top: 3px;
    opacity: 0.25;
}

/*---------------------
  Circle Progress
-----------------------*/

.circle-progress {
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-progress canvas {
    transform: rotate(90deg);
}

.circle-progress .loader-circle {
    margin-right: 16px;
}

.circle-progress .progress-info {
    text-align: left;
}

.circle-progress .progress-info h2 {
    font-size: 72px;
    font-weight: 400;
    color: #1c1c1c;
}

.circle-progress .progress-info p {
    font-size: 18px;
    margin-bottom: 0;
    line-height: normal;
}

.cp-item {
    text-align: center;
}

.cp-item h4 {
    font-size: 14px;
    color: #7e7e7e;
}

.milestone-item {
    text-align: center;
}

.milestone-item i {
    color: #eb2b63;
    font-size: 76px;
}

.milestone-item h2 {
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
}

.milestone-item p {
    font-size: 18px;
    margin-bottom: 0;
}

/*---------------------
  Accordion
-----------------------*/

.accordion-area .panel {
    margin-bottom: 16px;
}

.accordion-area .panel-link:after {
    content: "+";
    position: absolute;
    font-size: 15px;
    right: 26px;
    top: 0;
    line-height: 16px;
    width: 15px;
    height: 100%;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-accordion.accordion-area .panel-link,
.faq-accordion.accordion-area .panel-link.active.collapsed {
    padding: 17px 100px 17px 20px;
}

.faq-accordion.accordion-area .panel-link:after {
    right: 44px;
}

.accordion-area .panel-header .panel-link.collapsed:after {
    content: "+";
}

.accordion-area .panel-link.active:after {
    content: "-";
}

.accordion-area .panel-link.active {
    background: #eb2b63;
}

.accordion-area .panel-link,
.accordion-area .panel-link.active.collapsed {
    text-align: left;
    position: relative;
    width: 100%;
    padding: 17px 65px 17px 20px;
    padding-left: 41px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    border: none;
    min-height: 70px;
    border-radius: 13px;
}

.accordion-area .panel-body {
    padding: 45px 2px 0;
}

.accordion-area .panel-body h4 {
    margin-bottom: 25px;
}

.accordion-area .panel-body p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.8;
}

.accordion-area .panel-body img {
    border-radius: 15px;
}

.faq-accordion .panel-body {
    padding: 50px 5px 0;
}

.faq-accordion .panel-body h4 {
    padding-top: 25px;
}

.faq-accordion .panel-body p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.8;
}

.faq-accordion .panel-body img {
    border-radius: 15px;
}

/*---------------------
  Tab Element
-----------------------*/

.tab-element .nav-tabs {
    border-bottom: none;
}

.tab-element .nav-tabs .nav-link {
    border-radius: 0;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    border: none;
    padding: 24px 36px;
    margin-right: 8px;
    margin-bottom: 10px;
    border-radius: 13px;
}

.tab-element .nav-tabs .nav-item:last-child .nav-link {
    margin-right: 0;
}

.tab-element .nav-tabs .nav-link.active {
    background: #eb2b63;
}

.tab-element .tab-pane {
    padding: 35px 20px 30px;
}

.tab-element .tab-pane h4 {
    margin-bottom: 25px;
}

.tab-element .tab-pane p {
    margin-bottom: 0;
}

/*---------------------
  Social Icons
-----------------------*/

.social {
    display: flex;
}

.social a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    color: #fff;
    background: #491f70;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 13px;
    font-size: 12px;
    transition: all 0.4s;
}

.social a:hover {
    background: #eb2b63;
}

/*---------------------
  About Page
-----------------------*/

.sc-about-page {
    padding-top: 95px;
    padding-bottom: 74px;
}

.about-text {
    padding-top: 70px;
}

.about-text h3 {
    margin-bottom: 35px;
}

.about-text p {
    margin-bottom: 40px;
}

.milestones-section {
    padding-top: 90px;
    padding-bottom: 100px;
}

.milestones-top-text p {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
}

.clients-seciton {
    padding: 68px 0;
    background: #dee7ee;
}

.team-member {
    text-align: center;
}

.team-member img {
    border-radius: 34px;
    margin-bottom: 48px;
}

.team-member p {
    font-size: 15px;
}

.team-member .tm-social {
    justify-content: center;
}

/*---------------------
  About Page - New Sections
-----------------------*/

/* Founding Mission Section */
.founding-mission-section {
    background: #f8f9fa;
}

.mission-content h3 {
    color: #2e1779;
    margin-bottom: 25px;
    font-size: 28px;
}

.mission-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.mission-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.highlight-item i {
    color: #eb2b63;
    font-size: 20px;
    margin-right: 15px;
    width: 25px;
}

.highlight-item span {
    font-weight: 600;
    color: #2e1779;
}

.mission-visual {
    padding-left: 30px;
}

/* Timeline Section */
.timeline-section {
    background: #fff;
}

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

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #2e1779, #eb2b63);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
    text-align: left;
}

.timeline-year {
    position: absolute;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2e1779, #eb2b63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -40px;
}

.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.timeline-content h4 {
    color: #2e1779;
    margin-bottom: 15px;
    font-size: 20px;
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Offerings Section */
.offerings-section {
    background: #f8f9fa;
}

.offering-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.offering-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offering-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2e1779, #eb2b63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.offering-icon i {
    color: #fff;
    font-size: 32px;
}

.offering-item h4 {
    color: #2e1779;
    margin-bottom: 20px;
    font-size: 22px;
}

.offering-item p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

.offerings-cta {
    font-size: 16px;
    font-weight: 500;
    color: #585858;
}

/* Inline Links */
.inline-link {
    color: #eb2b63;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #2e1779;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-visual {
        padding-left: 0;
        margin-top: 30px;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-year {
        left: 0 !important;
        right: auto !important;
    }

    .offering-item {
        margin-bottom: 20px;
    }
}

/*---------------------
  Side Panel
-----------------------*/

.side-panel {
    position: fixed;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.box {
    position: relative;
    background-color: #2d0a5a;
    font-size: 16px;
    text-align: center;
    border-top-right-radius: 20px;
    padding: 10px 15px;
    margin-left: -300px;
    transition: margin-left 0.5s, box-shadow 0.5s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: attention-grabber 3s ease-in-out infinite;
}

.box:hover {
    margin-left: 0px !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    animation: none;
}

.website-dev-link {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.website-dev-link:hover {
    color: rgb(231, 231, 231);
}

.text-side-panel {
    height: max-content;
    border-radius: 20px;
    padding: 5px 10px;
}

@keyframes attention-grabber {

    0%,
    100% {
        margin-left: -300px;
    }

    50% {
        margin-left: -250px;
    }
}

/*---------------------
  Loading Animation
-----------------------*/

.lds-ring {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    margin: 4px;
    border: 4px solid #eb2b63;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #eb2b63 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*---------------------
  Custom Dropdown
-----------------------*/

.custom-dropdown {
    width: 150px;
    position: relative;
    font-family: Arial, sans-serif;
}

.selected-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
}

.selected-option:hover {
    /* background-color: #f0f0f0; */
}

.flag {
    width: 50px;
    margin-right: 10px;
    margin-bottom: 0 !important;
}

.dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1f0544;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.dropdown-options li {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-options li:hover {
    background-color: #2c0f55;
}

.dropdown-options li img {
    width: 20px;
    height: 15px;
    margin-right: 10px;
}

/*---------------------
  Blog Page
-----------------------*/

.blog-post {
    margin-bottom: 70px;
}

.blog-post h4 {
    margin-bottom: 14px;
}

.blog-post p {
    font-size: 15px;
    margin-bottom: 0;
}

.post-thumb {
    border-radius: 13px;
    margin-bottom: 52px;
}

.post-date {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    min-width: 108px;
    background: #eb2b63;
    margin-bottom: 15px;
}

.post-metas {
    margin-bottom: 30px;
}

.post-metas .post-meta {
    display: inline-block;
    font-size: 12px;
    color: #acacac;
    font-weight: 600;
    margin-right: 13px;
    padding-right: 14px;
    position: relative;
}

.post-metas .post-meta a {
    color: #acacac;
}

.post-metas .post-meta a:hover {
    text-decoration: underline;
}

.post-metas .post-meta:after {
    position: absolute;
    content: "|";
    color: #acacac;
    font-size: 12px;
    right: 0;
    top: 0;
}

.post-metas .post-meta:last-child {
    padding-right: 0;
    margin-right: 0;
}

.post-metas .post-meta:last-child:after {
    display: none;
}

.site-pagination a {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #1c1c1c;
    margin-right: 1px;
}

.site-pagination a.active {
    color: #eb2b63;
}

/*---------------------
  Sidebar Widgets
-----------------------*/

.sb-widget {
    margin-bottom: 75px;
}

.sb-widget:last-child {
    margin-bottom: 0;
}

.sb-widget .sb-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 45px;
}

.sb-widget ul {
    list-style: none;
}

.sb-widget ul li a {
    font-size: 14px;
    color: #585858;
    margin-bottom: 15px;
    display: inline-block;
}

.sb-widget .add {
    margin-bottom: 23px;
    display: block;
}

.sb-widget .add img {
    border-radius: 14px;
}

.sb-widget .sb-search-widget {
    position: relative;
}

.sb-widget .sb-search-widget input {
    width: 100%;
    height: 59px;
    padding-left: 15px;
    padding-right: 75px;
    border: none;
    background: #f5f1f8;
    border-radius: 12px;
}

.sb-widget .sb-search-widget button {
    position: absolute;
    height: 100%;
    right: 15px;
    top: 0;
    font-size: 14px;
    color: #acacac;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.sb-widget .sb-tag-widget a {
    display: inline-block;
    font-size: 14px;
    color: #585858;
    margin-right: 20px;
    margin-bottom: 10px;
}

.sb-widget .sb-tag-widget a.big-tag {
    font-size: 18px;
    color: #eb2b63;
}

.sb-latest-post-widget .lp-content h6 {
    color: #585858;
    opacity: 1;
}

.sb-latest-post-widget .lp-thumb {
    margin-right: 15px;
}

/*---------------------
  Contact Page
-----------------------*/

.contact-section {
    padding-top: 100px;
}

.contact-text h4 {
    margin-bottom: 30px;
}

.contact-text p {
    margin-bottom: 40px;
}

.cont-info {
    display: block;
    margin-bottom: 25px;
}

.cont-info .ci-icon {
    width: 36px;
    float: left;
}

.cont-info span {
    font-size: 16px;
    color: #1c1c1c;
    display: block;
    overflow: hidden;
}

.contact-form {
    padding-top: 64px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    height: 56px;
    border: none;
    padding: 0 29px;
    background: #eff4f7;
    border-radius: 4px;
    margin-bottom: 21px;
}

.contact-form textarea {
    padding: 23px 29px;
    height: 195px;
}

.map {
    margin-top: 107px;
    height: 685px;
}

/*---------------------
  WHOIS Page
-----------------------*/

.page-top-section-whois {
    padding: 100px 0;
    background-position: center;
    background-size: cover;
}

/* WHOIS styles have been moved to dedicated whois-banner.css file */

.text-muted,
.whois-info-heading,
.text-center h2 {
    color: #ffffff;
}

.text-center p,
.text-center h2 {
    color: #ffffff;
}

/*---------------------
  Team Section Fix
-----------------------*/

.team-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1200px;
    width: 90%;
    text-align: center;
}

.team-section h2 {
    color: #1c1c1c !important;
    font-weight: 700;
    margin-bottom: 30px;
}

.team-section p {
    color: #585858 !important;
    font-size: 16px;
    line-height: 1.8;
}

.team-section .dark-grey-text {
    color: #1c1c1c !important;
}

.team-section .blue-text {
    color: #eb2b63 !important;
    font-weight: 600;
}

.team-section .testimonial {
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.team-section .testimonial:hover {
    transform: translateY(-5px);
}

/*---------------------
  SEO Checker Styles
-----------------------*/

.domain-search-tab-text {
    font-size: 24px;
    font-weight: 600;
    color: #1c1c1c;
    text-align: center;
    margin: 30px 0 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border-left: 4px solid #eb2b63;
}

.domain-search-tlds {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
    padding: 0;
}

.domain-search-tlds li {
    background: linear-gradient(135deg, #eb2b63, #d91a54);
    padding: 20px 25px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(235, 43, 99, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.domain-search-tlds li:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.domain-search-tlds li:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(235, 43, 99, 0.4);
}

.domain-search-tlds li:hover:before {
    left: 100%;
}

.domain-search-tlds .tld {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.domain-search-tlds .register {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
}

/* SEO Services Call-to-Action */
.seo-services-cta {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px solid #eb2b63;
}

.seo-services-cta p {
    font-size: 18px;
    color: #1c1c1c;
    margin-bottom: 20px;
}

.seo-services-cta a {
    color: #eb2b63;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 25px;
    border: 2px solid #eb2b63;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.seo-services-cta a:hover {
    background: #eb2b63;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 43, 99, 0.3);
}

/* Responsive adjustments for SEO checker */
@media (max-width: 768px) {
    .domain-search-tlds {
        flex-direction: column;
        align-items: center;
    }

    .domain-search-tlds li {
        min-width: 250px;
        margin-bottom: 15px;
    }

    .domain-search-tab-text {
        font-size: 20px;
        padding: 15px;
    }
}

/*---------------------
  HOME PAGE COMPARISON TABLE STYLES
  Used in: home/components/_comparison-table.blade.php
-----------------------*/

/* Main comparison section container */
.comparison-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Comparison table wrapper with shadow and rounded corners */
.comparison-table-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Main comparison table styling */
.comparison-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    font-size: 14px;
}

/* Table header with gradient background */
.comparison-table thead {
    background: linear-gradient(135deg, #eb2b63 0%, #ff4081 100%);
    color: white;
}

/* Table header cells */
.comparison-table th {
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    border: none;
    position: relative;
}

/* Feature column (first column) styling */
.feature-column {
    background: #2c3e50 !important;
    text-align: left !important;
    width: 200px;
}

/* HostCry column highlighting */
.hostcry-column {
    background: #27ae60 !important;
    position: relative;
}

/* Provider header container */
.provider-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Comparison-table column only (avoid clashing with the global site header class name) */
.provider-header.hostcry-header {
    position: relative;
}

/* Provider logo styling */
.provider-logo {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Provider name text */
.provider-name {
    font-size: 16px;
    font-weight: 600;
}

/* Recommended badge styling */
.recommended-badge {
    background: #f39c12;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Table body row styling */
.comparison-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

/* Table row hover effect */
.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Table data cells */
.comparison-table td {
    padding: 18px 15px;
    text-align: center;
    vertical-align: middle;
    border: none;
}

/* Feature name cell (first column) */
.feature-name {
    background: #34495e;
    color: white;
    text-align: left !important;
    font-weight: 600;
    border-right: 2px solid #2c3e50;
}

/* HostCry cell highlighting */
.hostcry-cell {
    background: #e8f5e8;
    font-weight: 600;
    color: #27ae60;
    border-left: 3px solid #27ae60;
}

/* Competitor cells */
.competitor-cell {
    background: #fff;
    color: #666;
}

/* Price highlighting */
.price-highlight {
    color: #e74c3c;
    font-size: 18px;
    font-weight: 700;
}

/* Feature value highlighting */
.storage-highlight,
.bandwidth-highlight,
.guarantee-highlight,
.location-highlight {
    color: #27ae60;
    font-weight: 600;
    background: #d4edda;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* Call-to-action section at bottom of table */
.comparison-cta {
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0 0 15px 15px;
    margin-top: 0;
}

/* CTA heading */
.comparison-cta h4 {
    color: white;
    margin-bottom: 15px;
}

/* CTA paragraph */
.comparison-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* CTA button styling */
.comparison-cta .site-btn {
    background: #eb2b63;
    border: 2px solid #eb2b63;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* CTA button hover effect */
.comparison-cta .site-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 43, 99, 0.4);
}

/* MOBILE CARD LAYOUT STYLES */
/* Used for mobile-responsive comparison display */

/* Mobile comparison container */
.mobile-comparison {
    padding: 20px;
}

/* Mobile provider card (HostCry card) */
.mobile-provider-card {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
    color: white;
}

/* Mobile card header */
.mobile-provider-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* Mobile provider logo */
.mobile-provider-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 10px;
}

/* Mobile recommended badge */
.mobile-recommended-badge {
    background: #f39c12;
    color: white;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Mobile features container */
.mobile-features {
    margin-bottom: 25px;
}

/* Individual mobile feature row */
.mobile-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Remove border from last feature */
.mobile-feature:last-child {
    border-bottom: none;
}

/* Mobile feature name */
.mobile-feature-name {
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile feature value */
.mobile-feature-value {
    font-weight: 600;
    font-size: 14px;
    color: white;
}

/* Mobile price highlighting */
.mobile-feature-value .price-highlight {
    color: #f1c40f;
    font-size: 18px;
    font-weight: 700;
}

/* Mobile card call-to-action */
.mobile-card-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

/* Mobile button styling */
.mobile-btn {
    background: white;
    color: #27ae60;
    border: 2px solid white;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Mobile button hover effect */
.mobile-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Mobile competitors note section */
.mobile-competitors-note {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile competitors note heading */
.mobile-competitors-note h5 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

/* Competitor comparison container */
.competitor-comparison {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual competitor item */
.competitor-item {
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #eb2b63;
    font-size: 13px;
    line-height: 1.4;
}

/* Competitor name styling */
.competitor-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 3px;
}

/* RESPONSIVE DESIGN FOR COMPARISON TABLE */

/* Large screens (1200px and below) */
@media (max-width: 1200px) {
    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }

    .provider-logo {
        height: 25px;
    }
}

/* Medium screens (992px and below) */
@media (max-width: 992px) {
    .comparison-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .comparison-table-wrapper {
        margin: 0 -15px;
        border-radius: 0;
    }

    .comparison-table {
        font-size: 11px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 6px;
    }
}

/* Tablet screens (768px and below) */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
    }

    .comparison-table {
        min-width: 900px;
        font-size: 10px;
        white-space: nowrap;
    }

    .feature-column {
        width: 140px;
        position: sticky;
        left: 0;
        z-index: 10;
        background: #2c3e50;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 4px;
    }

    .provider-header {
        gap: 4px;
    }

    .provider-name {
        font-size: 12px;
        line-height: 1.2;
    }

    .provider-logo {
        height: 20px;
    }

    .recommended-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .price-highlight {
        font-size: 14px;
    }

    .storage-highlight,
    .bandwidth-highlight,
    .guarantee-highlight,
    .location-highlight {
        font-size: 10px;
        padding: 2px 4px;
    }
}

/* Small screens (576px and below) */
@media (max-width: 576px) {
    .comparison-section {
        padding: 40px 0;
    }

    .section-title {
        padding: 0 15px;
    }

    .section-title h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-title p {
        font-size: 14px;
    }

    .comparison-table-wrapper {
        margin: 0 -15px;
        border-radius: 0;
    }

    .comparison-table {
        min-width: 800px;
        font-size: 9px;
    }

    .feature-column {
        width: 120px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 6px 3px;
    }

    .feature-name {
        font-size: 10px;
        line-height: 1.2;
    }

    .provider-name {
        font-size: 10px;
    }

    .provider-logo {
        height: 18px;
    }

    .recommended-badge {
        font-size: 8px;
        padding: 1px 4px;
    }

    .price-highlight {
        font-size: 12px;
    }

    .comparison-cta {
        padding: 30px 15px;
    }

    .comparison-cta h4 {
        font-size: 18px;
        line-height: 1.3;
    }

    .comparison-cta p {
        font-size: 13px;
    }

    .comparison-cta .site-btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: auto;
    }

    /* Mobile card responsive adjustments */
    .mobile-comparison {
        padding: 15px;
    }

    .mobile-provider-card {
        padding: 20px;
        margin-bottom: 25px;
    }

    .mobile-provider-logo {
        height: 35px;
    }

    .mobile-recommended-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .mobile-feature {
        padding: 10px 0;
    }

    .mobile-feature-name,
    .mobile-feature-value {
        font-size: 13px;
    }

    .mobile-competitors-note {
        padding: 15px;
    }

    .mobile-competitors-note h5 {
        font-size: 15px;
    }

    .competitor-item {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Extra small screens (480px and below) */
@media (max-width: 480px) {
    .section-title h2 {
        font-size: 20px;
    }

    .comparison-table {
        min-width: 750px;
        font-size: 8px;
    }

    .feature-column {
        width: 100px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 5px 2px;
    }

    .provider-name {
        font-size: 9px;
    }

    .provider-logo {
        height: 16px;
    }

    .comparison-cta h4 {
        font-size: 16px;
    }

    .comparison-cta p {
        font-size: 12px;
    }

    /* Mobile card extra small adjustments */
    .mobile-comparison {
        padding: 10px;
    }

    .mobile-provider-card {
        padding: 15px;
    }

    .mobile-feature-name,
    .mobile-feature-value {
        font-size: 12px;
    }

    .mobile-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* END OF COMPARISON TABLE STYLES */

/*---------------------
  BANNER COMPONENT STYLES
  Used in: common/_banner.blade.php
-----------------------*/

/* Modern banner section with gradient background */
.modern-banner-section {
    background: linear-gradient(135deg, #1a0b3d 0%, #2d1b69 50%, #1a0b3d 100%);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--hostcry-header-height, 72px) + 24px);
    padding-bottom: 36px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #eb2b63, #8b5cf6, #eb2b63) 1;
}

/* Banner background decorative elements */
.banner-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(235, 43, 99, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

/* Banner container positioning */
.banner-container {
    position: relative;
    z-index: 2;
}

/* Modern banner content wrapper */
.banner-content-modern {
    color: white;
    text-align: center;
    padding: 40px 0;
}

/* Banner main heading with gradient text */
.banner-content-modern h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Banner description text */
.banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Banner breadcrumb navigation */
.banner-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Banner breadcrumb link styling */
.banner-breadcrumb-link {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    color: #1e293b !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    /* Ensure text is visible and not affected by gradient text properties */
    -webkit-text-fill-color: #1e293b;
    background-clip: border-box;
    -webkit-background-clip: border-box;
}

/* Banner breadcrumb link hover effect */
.banner-breadcrumb-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #1e293b;
    text-decoration: none;
}

/* Banner breadcrumb separator text */
.banner-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* RESPONSIVE DESIGN FOR BANNER */

/* Tablet and small desktop (768px and below) */
@media (max-width: 768px) {
    .modern-banner-section {
        min-height: 50vh !important;
        background-attachment: scroll !important;
        padding-top: calc(var(--hostcry-header-height, 72px) + 20px) !important;
        padding-bottom: 40px !important;
    }

    .banner-content-modern {
        padding: 30px 0 !important;
    }

    .banner-content-modern h2 {
        font-size: 2rem !important;
        margin-bottom: 20px !important;
    }

    .banner-description {
        font-size: 1rem !important;
        margin-bottom: 24px !important;
    }

    .banner-breadcrumb {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .banner-breadcrumb-link {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
}

/* Mobile devices (576px and below) */
@media (max-width: 576px) {
    .modern-banner-section {
        min-height: 45vh !important;
        padding-top: calc(var(--hostcry-header-height, 72px) + 16px) !important;
        padding-bottom: 30px !important;
    }

    .banner-content-modern {
        padding: 20px 0 !important;
    }

    .banner-content-modern h2 {
        font-size: 1.75rem !important;
    }
}

/* END OF BANNER COMPONENT STYLES */

/* =================================
   MODERN HERO BANNER STYLES
   Used in: common/_banner.blade.php (divide condition)
   ================================= */

/* Modern hero section with gradient background and animations */
.modern-hero-section {
    background: linear-gradient(135deg, #1a0b3d 0%, #2d1b69 50%, #1a0b3d 100%);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--hostcry-header-height, 72px) + 28px);
    padding-bottom: 48px;
    box-sizing: border-box;
}

/* Bottom accent — same language as navbar / footer */
.modern-hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #eb2b63, #8b5cf6, #eb2b63);
    z-index: 4;
    pointer-events: none;
}

/* Hero background decorative elements */
.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(235, 43, 99, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero container positioning */
.hero-container {
    position: relative;
    z-index: 2;
}

/* Hero content wrapper */
.hero-content-modern {
    color: white;
    padding: 60px 0;
}

/* Hero badge styling */
.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.2);
    margin-bottom: 24px;
    display: inline-block;
}

/* Hero main heading with gradient text */
.hero-content-modern h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero description text */
.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* Hero CTA buttons container */
.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* Hero primary CTA button */
.hero-cta-primary {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    color: #1e293b;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 28px rgba(2, 6, 23, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    border: none;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(2, 6, 23, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.18), 0 8px 24px rgba(235, 43, 99, 0.2);
    color: #1e293b;
    text-decoration: none;
}

/* Hero trust indicators */
.hero-trust-indicators {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    opacity: 0.8;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero additional info */
.hero-additional-info {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Hero visual elements */
.hero-visual {
    position: relative;
    text-align: center;
}

/* Hero pulse effect */
.hero-pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(235, 43, 99, 0.12) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

/* Hero speed indicators */
.hero-speed-indicator {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 10;
}

.hero-speed-indicator.top-left {
    top: 20%;
    left: 10%;
    animation: fadeInLeft 2s ease-out;
}

.hero-speed-indicator.top-right {
    top: 60%;
    right: 10%;
    animation: fadeInRight 2s ease-out 0.5s both;
}

.hero-speed-indicator.bottom-left {
    bottom: 20%;
    left: 20%;
    animation: fadeInUp 2s ease-out 1s both;
}

/* Hero rocket image */
.hero-rocket-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

/* Hero speed lines */
.hero-speed-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(235, 43, 99, 0.45), rgba(139, 92, 246, 0.45), transparent);
    animation: speedLine 2s ease-in-out infinite;
}

.hero-speed-line.line-1 {
    top: 50%;
}

.hero-speed-line.line-2 {
    top: 45%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(235, 43, 99, 0.25), rgba(139, 92, 246, 0.25), transparent);
    animation-delay: 0.3s;
}

.hero-speed-line.line-3 {
    top: 55%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(235, 43, 99, 0.25), rgba(139, 92, 246, 0.25), transparent);
    animation-delay: 0.6s;
}

/* =================================
   IMPORTANT PAGE BANNER STYLES
   Used in: common/_banner.blade.php (important condition)
   ================================= */

/* Important page banner section */
.important-page-banner {
    background: linear-gradient(135deg, #1a0b3d 0%, #2d1b69 50%, #1a0b3d 100%);
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--hostcry-header-height, 72px) + 24px) 0 52px 0;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #eb2b63, #8b5cf6, #eb2b63) 1;
}

/* Important banner background elements */
.important-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(235, 43, 99, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

/* Important banner container */
.important-banner-container {
    position: relative;
    z-index: 2;
}

/* Important banner row */
.important-banner-row {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Important banner content */
.important-banner-content {
    color: white;
    padding: 40px 0;
}

/* Important banner service badge */
.important-service-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
    display: inline-block;
}

/* Important banner main heading */
.important-banner-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: white;
}

/* Important banner description */
.important-banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Important banner inner wrapper */
.important-banner-inner {
    text-align: center;
}

/* Important banner badge wrapper */
.important-banner-badge-wrapper {
    margin-bottom: 20px;
}

/* Important banner badge */
.important-banner-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-block;
}

/* Important banner title */
.important-banner-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: white;
}

/* Important banner breadcrumb navigation */
.important-banner-breadcrumb {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.important-banner-breadcrumb-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.important-banner-breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.important-banner-breadcrumb-link:hover {
    color: white;
    text-decoration: none;
}

.important-banner-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
    font-size: 14px;
}

.important-banner-breadcrumb-current {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive adjustments for very small screens */
@media (max-width: 480px) {
    .important-banner-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .important-banner-breadcrumb-current {
        font-size: 12px;
    }

    .important-banner-breadcrumb-link {
        font-size: 12px;
    }

    .important-banner-breadcrumb-separator {
        font-size: 12px;
        margin: 0 6px;
    }
}

.important-breadcrumb-wrapper {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.important-breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.important-breadcrumb-link:hover {
    color: white;
    text-decoration: none;
}

.important-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
    font-size: 14px;
}

.important-breadcrumb-current {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* =================================
   BANNER ANIMATIONS AND KEYFRAMES
   ================================= */

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes speedLine {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* =================================
   RESPONSIVE STYLES FOR BANNERS
   ================================= */

@media (max-width: 768px) {
    .modern-hero-section {
        min-height: 80vh !important;
        background-attachment: scroll !important;
        padding-top: calc(var(--hostcry-header-height, 72px) + 20px) !important;
        padding-bottom: 32px !important;
    }

    .hero-content-modern {
        text-align: center !important;
        padding: 10px 0 20px 0 !important;
    }

    .hero-content-modern h1 {
        font-size: 2.5rem !important;
        margin-bottom: 16px !important;
    }

    .hero-badge {
        margin-bottom: 16px !important;
    }

    .hero-description {
        font-size: 1.1rem !important;
        margin-bottom: 24px !important;
    }

    .hero-cta-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
        margin-bottom: 0 !important;
    }

    .hero-cta-primary {
        justify-content: center !important;
        margin-bottom: 0 !important;
    }

    .hero-trust-indicators {
        display: none !important;
    }

    /* Important Page Banner Responsive */
    .important-page-banner {
        min-height: 35vh !important;
        padding: calc(var(--hostcry-header-height, 72px) + 20px) 0 40px 0 !important;
    }

    .important-banner-content {
        padding: 30px 0 !important;
    }

    .important-banner-content h1 {
        font-size: 2.2rem !important;
        margin-bottom: 14px !important;
    }
}

@media (max-width: 576px) {
    .modern-hero-section {
        min-height: 80vh !important;
        padding-top: calc(var(--hostcry-header-height, 72px) + 16px) !important;
        padding-bottom: 28px !important;
    }

    .hero-content-modern {
        padding: 5px 0 15px 0 !important;
    }

    .hero-content-modern h1 {
        font-size: 2rem !important;
        margin-bottom: 12px !important;
    }

    .hero-badge {
        margin-bottom: 12px !important;
    }

    .hero-description {
        margin-bottom: 20px !important;
    }

    .hero-cta-buttons {
        gap: 12px !important;
    }

    .hero-cta-primary {
        padding: 14px 24px !important;
        font-size: 15px !important;
    }

    .hero-trust-list {
        gap: 16px !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Important Page Banner Mobile */
    .important-page-banner {
        min-height: 30vh !important;
        padding: calc(var(--hostcry-header-height, 72px) + 16px) 0 30px 0 !important;
    }

    .important-banner-content {
        padding: 20px 0 !important;
    }

    .important-banner-content h1 {
        font-size: 1.9rem !important;
        margin-bottom: 12px !important;
    }

    .important-banner-description {
        font-size: 1rem !important;
        margin-bottom: 24px !important;
    }
}

/*---------------------
  MODERN PRICING CARD STYLES
  Used in: components/hosting-plans.blade.php
-----------------------*/

/* Modern pricing card base styling */
.modern-pricing-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

/* Recommended card styling */
.modern-pricing-card.recommended-card {
    border: 3px solid #eb2b63;
    box-shadow: 0 8px 32px rgba(235, 43, 99, 0.15);
}

/* Pricing card hover effects */
.modern-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(139, 92, 246, 0.12);
    border-color: #8b5cf6;
}

.modern-pricing-card.recommended-card:hover {
    box-shadow: 0 20px 48px rgba(235, 43, 99, 0.2);
    border-color: #d91a54;
}

/* Most popular badge */
.pricing-card-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #eb2b63, #ff4081);
    color: white;
    padding: 8px 24px;
    border-radius: 0 0 12px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(235, 43, 99, 0.3);
}

/* Pricing card content padding */
.pricing-card-content {
    padding: 32px;
}

.pricing-card-content.recommended {
    padding: 48px 32px 32px;
}

/* Plan header section */
.pricing-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.pricing-card-description {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Pricing section */
.pricing-card-pricing {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-card-currency {
    font-size: 20px;
    color: #64748b;
    font-weight: 500;
}

.pricing-card-price {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.pricing-card-period {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.pricing-card-total {
    margin-bottom: 16px;
}

.pricing-card-total-text {
    color: #94a3b8;
    font-size: 14px;
}

.pricing-card-save-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-bottom: 24px;
    display: inline-block;
}

/* CTA Button */
.pricing-card-cta {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-card-button {
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.pricing-card-button.recommended {
    background: linear-gradient(135deg, #eb2b63, #ff4081);
    box-shadow: 0 4px 16px rgba(235, 43, 99, 0.3);
}

.pricing-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    color: white;
    text-decoration: none;
}

.pricing-card-button.recommended:hover {
    box-shadow: 0 8px 24px rgba(235, 43, 99, 0.4);
}

/* Features section */
.pricing-card-features {
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
}

.pricing-card-features-title {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-card-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-feature-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.pricing-card-feature-icon {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    flex-shrink: 0;
    fill: #10b981;
}

/* RESPONSIVE DESIGN FOR MODERN PRICING CARDS */

/* Large tablets and small desktops (991px and below) */
@media (max-width: 991px) {
    .modern-pricing-card {
        margin-bottom: 32px !important;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .modern-pricing-card {
        margin-bottom: 24px !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    }

    .modern-pricing-card.recommended-card {
        box-shadow: 0 4px 20px rgba(235, 43, 99, 0.2) !important;
    }

    .pricing-card-badge {
        display: none !important;
    }

    .pricing-card-content {
        padding: 24px 20px !important;
    }

    .pricing-card-title {
        font-size: 22px !important;
        margin-bottom: 6px !important;
    }

    .pricing-card-description {
        font-size: 13px !important;
    }

    .pricing-card-price {
        font-size: 40px !important;
    }

    .pricing-card-currency {
        font-size: 18px !important;
    }

    .pricing-card-period {
        font-size: 14px !important;
    }

    .pricing-card-header,
    .pricing-card-pricing,
    .pricing-card-cta {
        margin-bottom: 24px !important;
    }

    .pricing-card-button {
        padding: 14px 20px !important;
        font-size: 15px !important;
    }
}

/* Mobile devices (576px and below) */
@media (max-width: 576px) {
    .modern-pricing-card {
        margin-bottom: 20px !important;
        border-radius: 10px !important;
    }

    .pricing-card-content {
        padding: 20px 16px !important;
    }

    .pricing-card-title {
        font-size: 20px !important;
        margin-bottom: 4px !important;
    }

    .pricing-card-description {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .pricing-card-price {
        font-size: 36px !important;
    }

    .pricing-card-currency {
        font-size: 16px !important;
    }

    .pricing-card-period {
        font-size: 13px !important;
    }

    .pricing-card-header,
    .pricing-card-pricing {
        margin-bottom: 20px !important;
    }

    .pricing-card-cta {
        margin-bottom: 16px !important;
    }

    .pricing-card-button {
        padding: 12px 18px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
    }

    .pricing-card-feature-item {
        padding: 6px 0 !important;
        font-size: 13px !important;
    }

    .pricing-card-feature-icon {
        width: 14px !important;
        height: 14px !important;
        margin-right: 10px !important;
    }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
    .modern-pricing-card {
        margin-bottom: 16px !important;
    }

    .pricing-card-content {
        padding: 16px 12px !important;
    }

    .pricing-card-title {
        font-size: 18px !important;
    }

    .pricing-card-price {
        font-size: 32px !important;
    }

    .pricing-card-header,
    .pricing-card-pricing {
        margin-bottom: 16px !important;
    }

    .pricing-card-cta {
        margin-bottom: 12px !important;
    }

    .pricing-card-button {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
}

/* Extra small devices (360px and below) */
@media (max-width: 360px) {
    .pricing-card-content {
        padding: 12px 8px !important;
    }

    .pricing-card-title {
        font-size: 16px !important;
    }

    .pricing-card-price {
        font-size: 28px !important;
    }
}

/* Touch-friendly hover effects for devices with hover capability */
@media (hover: hover) {
    .modern-pricing-card:hover {
        animation: subtle-pulse 0.3s ease-in-out;
    }
}

@keyframes subtle-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) {
    .modern-pricing-card {
        transform: none !important;
    }
}

/* END OF MODERN PRICING CARD STYLES */

/* ----------------
  Responsive
---------------------*/

@media (min-width: 1200px) {
    .container {
        max-width: 1175px;
    }
}

/* Mobile hero image hide */
@media screen and (max-width: 900px) {
    .hero-image {
        display: none;
    }

    #row1 {
        margin-right: 0px !important;
    }
}

/* Tablet :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* Tablet Mega Menu Adjustments */
    .mega-menu {
        min-width: 500px;
    }

    .mega-menu-content {
        padding: 20px;
    }

    .mega-menu-column {
        padding: 0 15px;
    }

    .hero-rocket {
        display: none;
    }

    #row1 {
        margin-right: 0px;
    }

    .feature-item.fi-center-top .ft-icon {
        transform: scale(1);
    }

    .feature-item.fi-center-top .ft-icon i {
        transform: scale(1);
    }

    .testimonials-slider {
        margin-top: 50px;
    }

    .banner-text p {
        margin-bottom: 30px;
    }

    /* Footer responsive styles removed - using modern-footer.css instead */
    .service-box-text {
        padding: 110px 35px 125px;
    }

    .service-box-image {
        padding: 100px 30px 50px;
    }

    .faq-accordion .panel-body img {
        margin-top: 20px;
    }

    .about-text {
        padding-top: 0;
        margin-bottom: 40px;
    }

    .milestones-top-text {
        text-align: center;
    }

    .milestone-item h2 {
        font-size: 55px;
    }

    .team-member {
        margin-bottom: 50px;
    }

    .sidebar {
        margin-top: 100px;
    }

    .circle-progress {
        margin-bottom: 50px;
    }

    .milestone-item {
        margin-bottom: 40px;
    }
}

/* Large Mobile :480px. */
@media only screen and (max-width: 1131px) {
    .header-section.hostcry-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding-bottom: 0;
    }

    .hostcry-header-inner {
        padding: calc(10px + env(safe-area-inset-top, 0px)) 16px 10px;
        align-items: center;
        gap: 12px;
    }

    .site-logo img {
        max-height: 30px;
        width: auto;
    }

    .nav-switch {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        float: none;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-size: 20px;
        cursor: pointer;
        color: #fff;
        border: none;
        border-radius: 10px;
        background: transparent;
        transition: background-color 0.2s ease, color 0.2s ease;
        text-shadow: none;
    }

    .nav-switch:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-switch:active {
        background: rgba(255, 255, 255, 0.12);
    }

    .header-section.hostcry-header.is-scrolled .nav-switch {
        background: transparent;
    }

    .header-section.hostcry-header:not(.is-scrolled) .nav-switch {
        text-shadow: none;
    }

    body.mobile-nav-open .nav-switch .fa-bars::before {
        content: "\f00d";
    }

    body.mobile-nav-open {
        overflow: hidden;
    }

    /* Drawer scroll areas must receive vertical pans (iOS/WebKit) */
    body.mobile-nav-open .mobile-nav-drawer-scroll,
    body.mobile-nav-open .main-menu,
    body.mobile-nav-open .mega-menu {
        touch-action: pan-y;
    }

    /* backdrop-filter on the header creates a containing block for position:fixed children,
       which trapped .nav-warp to the header bar height — disable while the drawer is open */
    body.mobile-nav-open .header-section.hostcry-header,
    body.mobile-nav-open .header-section.hostcry-header.is-scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Above typical chat/support iframes (often use very large z-index). #preloder stays 999999 for initial load. */
    body.mobile-nav-open .header-section.hostcry-header {
        z-index: 2147483000 !important;
    }

    body.mobile-nav-open .nav-warp {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        min-height: 0;
        z-index: 2147483001;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #ffffff;
        box-shadow: none;
        padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
        box-sizing: border-box;
        overflow: hidden;
    }

    .mobile-nav-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
        padding: 12px 16px;
        padding-top: calc(12px + env(safe-area-inset-top, 0px));
        border-bottom: 1px solid #e5e7eb;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
        z-index: 2147483003;
    }

    .mobile-nav-drawer-logo {
        display: inline-flex;
        align-items: center;
    }

    .mobile-nav-drawer-logo img {
        display: block;
        height: auto;
        max-height: 36px;
        width: auto;
    }

    .mobile-nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        border-radius: 12px;
        background: transparent;
        color: #111827;
        font-size: 22px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .mobile-nav-close:hover {
        background: #f3f4f6;
    }

    .mobile-nav-drawer-scroll {
        display: flex;
        flex-direction: column;
        flex: 1 1 0%;
        flex-basis: 0;
        min-height: 0;
        height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-gutter: stable;
        scrollbar-width: thin;
        scrollbar-color: #94a3b8 #f1f5f9;
        position: relative;
    }

    .mobile-nav-drawer-scroll::-webkit-scrollbar {
        width: 10px;
    }

    .mobile-nav-drawer-scroll::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 6px;
    }

    .mobile-nav-drawer-scroll::-webkit-scrollbar-thumb {
        background: #94a3b8;
        border-radius: 6px;
        border: 2px solid #f1f5f9;
    }

    .nav-warp {
        display: none;
    }

    .hostcry-header-actions {
        order: unset;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
        margin-top: auto;
        padding: 16px 18px;
        border-top: 1px solid #e5e7eb;
        background: #ffffff;
        gap: 10px;
    }

    .hostcry-locale {
        border-color: rgba(17, 24, 39, 0.12);
        color: #111827;
    }

    /* Footer selector lives on a dark background — keep it light on mobile */
    .modern-footer-section .hostcry-locale,
    .modern-footer-section .hostcry-locale--selector {
        border-color: rgba(255, 255, 255, 0.18) !important;
        color: rgba(255, 255, 255, 0.85) !important;
    }
    .modern-footer-section .hostcry-locale-text {
        color: rgba(255, 255, 255, 0.85) !important;
    }
    .modern-footer-section .hostcry-locale--selector:hover {
        background: rgba(255, 255, 255, 0.08) !important;
    }

    .user-panel {
        float: none;
        display: block;
        position: static;
        margin: 0;
    }

    .user-panel--outline a {
        display: inline-flex;
        justify-content: center;
        width: 100%;
        padding: 14px 18px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 12px;
        border: 2px solid #111827;
        color: #111827;
        background: #fff;
    }

    .user-panel--outline a:hover {
        background: #f9fafb;
        color: #111827;
    }

    .main-menu {
        float: none;
        padding: 0;
        margin: 0;
        width: 100%;
        flex: 1 1 auto;
        min-height: 0;
        overflow: visible;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
    }

    .mobile-nav-promo {
        display: block;
        margin: 12px 14px 12px;
        flex-shrink: 0;
        padding: 14px;
        border-radius: 14px;
        background: linear-gradient(135deg, #1f1147 0%, #2d1b69 55%, #3e2b82 100%);
        color: #ffffff;
        box-shadow: 0 10px 28px rgba(17, 24, 39, 0.18);
    }

    .mobile-nav-promo-badge {
        display: inline-flex;
        align-items: center;
        padding: 5px 9px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        background: rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 10px;
    }

    .mobile-nav-promo-title {
        margin: 0 0 6px;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 700;
        color: #ffffff;
    }

    .mobile-nav-promo-text {
        margin: 0;
        font-size: 13px;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.88);
    }

    .mobile-nav-promo-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 12px;
        margin-bottom: 12px;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        color: #111827;
        background: #ffffff;
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .mobile-nav-promo-btn:hover {
        color: #111827;
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
    }

    .mobile-nav-contact {
        display: grid;
        gap: 8px;
    }

    .mobile-nav-contact-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.92);
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
    }

    .mobile-nav-contact-item i {
        width: 18px;
        text-align: center;
        opacity: 0.9;
    }

    .mobile-nav-contact-item:hover {
        color: #ffffff;
    }

    .main-menu li {
        display: block;
    }

    .mega-menu-item {
        position: static;
    }

    .main-menu > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        color: #111827;
        margin: 0;
        border-top: 1px solid #e5e7eb;
        padding: 16px 18px;
        border-radius: 0;
        font-weight: 700;
        font-size: 16px;
        transition: background-color 0.2s ease;
    }

    .main-menu > li > a:hover {
        background: #f9fafb;
        color: #111827;
    }

    .mega-menu-item > a .mega-menu-chevron::before {
        content: "\f054";
    }

    .mega-menu-item > a i {
        float: none;
        margin-top: 0;
        font-size: 12px;
        opacity: 0.45;
    }

    .main-menu > li.is-active > a,
    .main-menu > li.mega-menu-item.is-active > a {
        background: #eef2ff;
        color: #312e81;
        box-shadow: inset 3px 0 0 #4f46e5;
    }

    /* Drill-down: fixed to viewport so overflow scroll works (abspos inside flex scroll breaks on iOS) */
    .mega-menu {
        position: fixed;
        left: env(safe-area-inset-left, 0px);
        right: env(safe-area-inset-right, 0px);
        top: calc(env(safe-area-inset-top, 0px) + 62px);
        bottom: 0;
        width: auto;
        max-width: none;
        min-width: 0;
        height: auto;
        margin: 0;
        padding: 0;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        box-sizing: border-box;
        display: block;
        background: #ffffff;
        box-shadow: none;
        border-radius: 0;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: translateX(105%);
        transition: transform 0.28s ease;
        z-index: 2147483002;
        pointer-events: none;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        scrollbar-gutter: stable;
        scrollbar-width: thin;
        scrollbar-color: #94a3b8 #f1f5f9;
    }

    .mega-menu::-webkit-scrollbar {
        width: 10px;
    }

    .mega-menu::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 6px;
    }

    .mega-menu::-webkit-scrollbar-thumb {
        background: #94a3b8;
        border-radius: 6px;
        border: 2px solid #f1f5f9;
    }

    .mega-menu-item.is-mobile-panel-open .mega-menu {
        transform: translateX(0);
        pointer-events: auto;
    }

    .mega-menu::before {
        display: none !important;
    }

    .mega-menu-item:hover .mega-menu {
        margin-top: 0;
        transform: translateX(105%);
    }

    .mega-menu-item.is-mobile-panel-open:hover .mega-menu {
        transform: translateX(0);
    }

    .mega-menu-item:focus-within .mega-menu {
        transform: translateX(105%);
    }

    .mega-menu-item.is-mobile-panel-open:focus-within .mega-menu {
        transform: translateX(0);
    }

    .mobile-mega-back {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        width: 100%;
        padding: 14px 18px;
        border: none;
        border-bottom: 1px solid #e5e7eb;
        background: #fff;
        font-family: inherit;
        font-weight: 700;
        font-size: 15px;
        color: #111827;
        text-align: left;
        cursor: pointer;
        transition: background-color 0.2s ease;
        position: sticky;
        top: 0;
        z-index: 12;
        box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
    }

    .mobile-mega-back:hover {
        background: #f9fafb;
    }

    .mobile-mega-back-icon {
        display: inline-flex;
        width: 28px;
        justify-content: flex-start;
        color: #6b7280;
    }

    .mega-menu-content {
        display: block;
        padding: 0 0 12px;
        overflow: visible;
    }

    .mega-menu-grid,
    .mega-menu-grid--2 {
        display: block;
    }

    .mega-menu-column {
        padding: 0;
        margin-bottom: 0;
    }

    .mega-kicker {
        padding: 12px 18px 8px;
        margin: 0;
        background: #f9fafb;
        color: rgba(17, 24, 39, 0.55);
        border-top: 1px solid #e5e7eb;
        font-size: 11px;
    }

    .mega-kicker--spaced {
        margin-top: 0;
    }

    .mega-link {
        border-radius: 0;
        padding: 14px 18px;
        border-top: 1px solid #e5e7eb;
        align-items: flex-start;
        transition: background-color 0.18s ease;
    }

    .mega-link:hover {
        background: #f9fafb;
    }

    .mega-link-title {
        color: #111827;
        font-size: 15px;
    }

    .mega-link-desc {
        color: rgba(55, 65, 81, 0.85);
        font-size: 13px;
    }

    .mega-link:focus-visible {
        box-shadow: inset 3px 0 0 rgba(79, 70, 229, 0.85);
    }

    .hero-rocket {
        display: none;
    }

    .hero-content h2,
    .hero-content h1 {
        font-size: 50px;
        margin-bottom: 30px;
    }

    /* Footer mobile styles removed - using modern-footer.css instead */
    /* Keeping essential footer bottom responsive styles */
    .footer-section {
        text-align: center;
    }

    .footer-menu,
    .copyright {
        float: none;
        padding-top: 10px;
    }

    .footer-menu li a {
        margin-left: 20px;
    }

    .service-box:nth-child(1) {
        background: #210f5a;
    }

    .service-box-image {
        padding: 100px 30px 50px;
    }

    .faq-accordion .panel-body img {
        margin-top: 20px;
    }

    .about-text {
        padding-top: 0;
        margin-bottom: 40px;
    }

    .milestones-top-text {
        text-align: center;
    }

    .team-member {
        margin-bottom: 50px;
    }

    .clients-seciton img {
        margin: 10px 0;
    }

    .sidebar {
        margin-top: 100px;
    }

    .circle-progress {
        margin-bottom: 50px;
    }

    .milestone-item {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 600px) {
    .page-top-section {
        height: 404px;
        padding-top: 150px;
    }

    /* Domain search result responsive styles */
    .searched-domain-price>.buy-now {
        position: static;
        width: 200px;
    }

    .searched-domain-price {
        flex-direction: column;
    }

    .search-body {
        flex-direction: column;
    }
}

/* Plan switcher responsive (Legacy - Removed) */
/* Old responsive plan-switcher styles removed - using modern-plan-switcher.css instead */

/* Small Mobile :320px. */
@media only screen and (max-width: 479px) {
    .header-section.hostcry-header .site-logo {
        margin-left: 0;
    }

    .section-title h2 {
        font-size: 35px;
    }

    .hero-section {
        height: 500px;
    }

    .hero-content h2,
    .hero-content h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .domain-search-form {
        text-align: center;
        flex-direction: column;
    }

    .domain-search-form input {
        width: 100%;
        margin-bottom: 20px;
    }

    .domain-search-form .site-btn {
        margin-left: 0;
    }

    .service-box-text {
        padding: 90px 30px 105px;
    }

    .searched-domain-price {
        width: 100%;
        position: relative;
    }

    .searched-domain-price>.buy-now {
        position: relative;
        right: auto;
        margin-top: 10px;
        display: block;
        width: 100%;
    }

    .domain-search-header,
    .other-tlds {
        padding: 15px;
        text-align: center;
    }

    .faq-accordion.accordion-area .panel-link,
    .faq-accordion.accordion-area .panel-link.active.collapsed {
        padding: 17px 50px 17px 20px;
    }

    .faq-accordion.accordion-area .panel-link:after {
        right: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 766px) {
    .hero-section {
        height: 600px !important;
    }
}

/* ===================================
   DOMAIN SEARCH JAVASCRIPT STYLES
   ===================================

/* ===================================
   ERROR STATE STYLES
   ===================================
   Styles for domain validation errors and user feedback messages
*/

.domain-error-header {
    color: #ef4444;
}

.domain-error-message {
    color: #ef4444;
    margin-bottom: 10px;
}

.domain-error-suggestion {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.domain-error-examples {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.domain-error-examples-title {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.domain-error-examples-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.domain-example-pill {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid;
    transition: all 0.2s ease;
}

.domain-example-pill.blue {
    background: #e0f2fe;
    color: #0369a1;
    border-color: #0ea5e9;
}

.domain-example-pill.green {
    background: #f0fdf4;
    color: #166534;
    border-color: #22c55e;
}

.domain-example-pill.yellow {
    background: #fef3c7;
    color: #92400e;
    border-color: #f59e0b;
}

.domain-error-actions {
    margin-top: 15px;
    text-align: center;
}

.domain-clear-btn {
    background: #6b7280;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.domain-clear-btn:hover {
    background: #4b5563;
}

/* ===================================
   TLD CHECK BUTTON STYLES
   ===================================
   Interactive button states for domain availability checking
*/

.tld-check-btn {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tld-check-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.tld-check-btn.loading {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    cursor: not-allowed;
}

.tld-check-btn.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.tld-check-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* ===================================
   TLD RESULT STYLES
   ===================================
   Styles for displaying domain availability results
*/

.tld-result-container {
    transition: all 0.3s ease;
}

.tld-result-available {
    opacity: 1;
    transform: translateY(0);
}

.tld-result-loading {
    opacity: 0;
    transform: translateY(10px);
}

.tld-availability-success {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.tld-availability-error {
    color: #ef4444;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.tld-price-display {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.tld-buy-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.tld-buy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: white;
    text-decoration: none;
}

.tld-unavailable-message {
    text-align: center;
}

.tld-unavailable-text {
    color: #6b7280;
    font-size: 12px;
    margin: 0;
}

.tld-cache-indicator {
    color: #10b981;
    font-size: 10px;
    margin-left: 5px;
}

/* ===================================
   ALTERNATIVE DOMAIN STYLES
   ===================================
   Enhanced styles for alternative domain suggestions
*/

.alternative-header {
    width: 100%;
    margin-bottom: 20px;
}

.alternative-header-content {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.alternative-header-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.alternative-header-icon i {
    color: white;
    font-size: 18px;
}

.alternative-header-title {
    margin: 0;
    color: #1e293b;
    font-weight: 700;
    font-size: 18px;
}

.alternative-header-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.alternative-item-enhanced {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
}

.alternative-item-enhanced.recommended {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-color: #0ea5e9;
}

.alternative-item-enhanced.regular {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.alternative-item-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.alternative-recommended-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
    width: auto;
    display: inline-block;
}

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

.alternative-item-left {
    flex: 1;
}

.alternative-item-right {
    margin-left: 20px;
}

.alternative-domain-info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.alternative-domain-name {
    font-weight: 700;
    font-size: 16px;
    color: #1e293b;
    margin-left: 10px;
}

.alternative-available-badge {
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 10px;
}

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

.alternative-price-container {
    display: flex;
    align-items: center;
}

.alternative-price-icon {
    color: #6b7280;
    margin-right: 5px;
    font-size: 12px;
}

.alternative-price-amount {
    font-weight: 700;
    font-size: 18px;
    color: #059669;
}

.alternative-price-period {
    color: #6b7280;
    font-size: 12px;
    margin-left: 4px;
}

.alternative-price-note {
    color: #f59e0b;
    font-size: 10px;
    margin-left: 8px;
    background: #fef3c7;
    padding: 2px 6px;
    border-radius: 4px;
}

.alternative-popular-indicator {
    display: flex;
    align-items: center;
}

.alternative-popular-icon {
    color: #ef4444;
    margin-right: 5px;
    font-size: 12px;
}

.alternative-popular-text {
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
}

.alternative-buy-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.alternative-buy-btn:hover {
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

.alternative-buy-btn i {
    margin-right: 8px;
}

/* Show More Alternatives Button */
.show-more-alternatives-btn {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-alternatives-btn:hover {
    transform: translateY(-1px);
}

.show-more-alternatives-container {
    text-align: center;
    margin-top: 15px;
}

/* Load More Suggestions Button */
.load-more-suggestions-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.load-more-suggestions-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    color: white;
}

.load-more-suggestions-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.load-more-suggestions-btn:disabled:hover {
    background: #9ca3af;
    transform: none;
    box-shadow: none;
}

/* No Alternatives Message Styles */
.no-alternatives-container {
    text-align: center;
    padding: 30px;
}

.no-alternatives-icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.no-alternatives-icon i {
    color: #92400e;
    font-size: 24px;
}

.no-alternatives-title {
    margin: 0 0 10px 0;
    color: #1e293b;
    font-weight: 700;
}

.no-alternatives-text {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.no-alternatives-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.suggest-variations-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggest-variations-btn:hover {
    transform: translateY(-1px);
}

.try-different-btn {
    background: #6b7280;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.try-different-btn:hover {
    transform: translateY(-1px);
    background: #4b5563;
}

/* Domain Variations Styles */
.domain-variations-container {
    padding: 25px;
    text-align: center;
}

.domain-variations-title {
    margin: 0 0 15px 0;
    color: #1e293b;
    font-weight: 700;
}

.domain-variations-text {
    color: #64748b;
    margin-bottom: 20px;
}

.domain-variations-list {
    margin-bottom: 20px;
}

.domain-variation-pill {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid #0ea5e9;
    margin: 4px;
    display: inline-block;
    transition: all 0.2s ease;
}

.domain-variation-pill:hover {
    background: #0ea5e9;
    color: white;
}

.start-fresh-btn {
    background: #6b7280;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.start-fresh-btn:hover {
    background: #4b5563;
}

/* Alternative Domain Section Backgrounds */
.alternative-section-enhanced {
    padding: 25px;
    background: linear-gradient(135deg, #fefefe, #f8fafc);
    border-top: 3px solid #3b82f6;
}

.alternative-section-no-results {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-top: 3px solid #f59e0b;
}

/* ===================================
   AI DOMAIN SUGGESTIONS STYLES
   ===================================
   Styles for AI-powered domain suggestion feature
*/

/* AI Suggestions Button */
.ai-suggestions-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.ai-suggestions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    color: white;
}

.ai-suggestions-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ai-suggestions-btn.loading {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    cursor: not-allowed;
}

/* AI Suggestions Card */
.ai-suggestions-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
    border: 2px solid #10b981;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.ai-suggestions-header-card {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.ai-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ai-header-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ai-header-text h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.ai-header-text p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.ai-generate-smart-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-generate-smart-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.ai-generate-smart-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.ai-smart-content {
    padding: 24px;
}

/* Fast Suggestions List */
.fast-suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fast-suggestion-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.fast-suggestion-item:hover {
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.fast-suggestion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.fast-suggestion-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fast-suggestion-actions {
    display: flex;
    gap: 8px;
}

.check-availability-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.check-availability-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);
}

.check-availability-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Availability Results */
.availability-results {
    margin-top: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.availability-success {
    border-left: 4px solid #10b981;
    padding-left: 12px;
}

.available-variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.available-variant-item {
    background: white;
    border: 1px solid #d1fae5;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.available-variant-item:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.variant-domain {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    font-size: 14px;
}

.variant-price {
    color: #059669;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
}

.variant-buy-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.variant-buy-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.availability-unavailable {
    text-align: center;
    padding: 16px;
    border-left: 4px solid #ef4444;
    padding-left: 12px;
}

.change-domain-btn {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.change-domain-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-1px);
}

/* Alternatives */
.alternatives-container {
    margin-top: 16px;
    padding: 16px;
    background: #faf5ff;
    border-radius: 8px;
    border: 1px solid #e9d5ff;
}

.alternatives-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alternative-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.alternative-item:hover {
    border-color: #8b5cf6;
    background: #faf5ff;
}

.alternative-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.check-alt-btn {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.check-alt-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-1px);
}

.check-alt-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.alternatives-loading {
    text-align: center;
    padding: 20px;
}

/* TLD Badges */
.suggestion-tlds {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tlds-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    margin-right: 4px;
}

.suggestion-tld-badge {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}

.suggestion-tld-badge:hover {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

/* Quick Check Results */
.quick-check-loading {
    text-align: center;
    padding: 20px;
}

.quick-check-success {
    text-align: center;
    padding: 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.quick-domain-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.quick-domain-price {
    font-size: 18px;
    font-weight: 700;
    color: #059669;
}

.quick-buy-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quick-buy-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.quick-check-unavailable {
    text-align: center;
    padding: 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
}

/* Responsive Styles for AI Suggestions */
@media (max-width: 768px) {

    /* Fast Suggestions List Mobile */
    .fast-suggestion-item {
        padding: 16px;
        margin: 0 8px;
    }

    .fast-suggestion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
    }

    .fast-suggestion-name {
        font-size: 16px;
        line-height: 1.4;
    }

    /* TLD Badges Mobile */
    .suggestion-tlds {
        margin-top: 8px;
        padding-top: 8px;
        gap: 6px;
    }

    .tlds-label {
        font-size: 11px;
        width: 100%;
        margin-bottom: 4px;
        margin-right: 0;
    }

    .suggestion-tld-badge {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 44px;
        text-align: center;
    }

    /* Quick Check Results Mobile */
    .quick-domain-info {
        flex-direction: column;
        gap: 12px;
    }

    .quick-domain-price {
        font-size: 16px;
    }

    .quick-buy-btn {
        padding: 12px 24px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    /* Available Variants Grid Mobile */
    .available-variants-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .available-variant-item {
        padding: 16px;
    }

    .variant-buy-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    /* AI Suggestions Card Mobile */
    .ai-suggestions-card {
        margin: 0 8px;
        border-radius: 8px;
    }

    .ai-suggestions-header {
        padding: 16px;
    }

    .ai-suggestions-content {
        padding: 16px;
    }

    .ai-generate-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    /* Extra Small Mobile Devices */
    .fast-suggestion-item {
        padding: 12px;
        margin: 0 4px;
        border-radius: 8px;
    }

    .fast-suggestion-name {
        font-size: 14px;
    }

    .suggestion-tld-badge {
        padding: 4px 8px;
        font-size: 11px;
        min-width: 40px;
    }

    .quick-domain-price {
        font-size: 14px;
    }

    .quick-buy-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .availability-results {
        padding: 12px;
        margin-top: 12px;
    }

    .quick-check-success,
    .quick-check-unavailable {
        padding: 12px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    /* Tablet Styles */
    .available-variants-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fast-suggestion-item {
        padding: 18px;
    }

    .suggestion-tld-badge {
        padding: 5px 9px;
        font-size: 11px;
    }
}

/* AI-Powered Hint Top Styles */
.ai-powered-hint-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #bae6fd;
    border-radius: 16px;
    font-size: 12px;
    color: #0369a1;
    transition: all 0.3s ease;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.ai-powered-hint-top:hover {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.15);
}

.ai-hint-icon {
    font-size: 16px;
    color: #0284c7;
    animation: sparkle 2s ease-in-out infinite;
}

.ai-hint-text {
    font-weight: 600;
    font-size: 13px;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive styles for AI hint */
@media (max-width: 768px) {
    .ai-powered-hint-top {
        margin-bottom: 15px;
        padding: 5px 10px;
        font-size: 11px;
        border-radius: 14px;
    }

    .ai-hint-icon {
        font-size: 14px;
    }

    .ai-hint-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .ai-powered-hint-top {
        margin-bottom: 12px;
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 12px;
    }

    .ai-hint-text {
        font-size: 10px;
    }
}

/* Compact Unavailable Domain Styles */
.unavailable-info {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 0;
    margin: 0;
}

.unavailable-compact {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.unavailable-message {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dc2626;
    font-weight: 600;
    font-size: 14px;
}

.unavailable-message i {
    font-size: 16px;
    color: #ef4444;
}

.ai-suggestion-compact {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border: 1px solid #93c5fd;
    border-radius: 6px;
    color: #1e40af;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ai-suggestion-compact:hover {
    background: linear-gradient(135deg, #bfdbfe, #93c5fd);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.ai-suggestion-compact i {
    font-size: 14px;
    color: #2563eb;
}

/* Responsive styles for compact unavailable domain info */
@media (max-width: 768px) {
    .unavailable-compact {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .unavailable-message {
        font-size: 13px;
    }

    .ai-suggestion-compact {
        padding: 6px 10px;
        font-size: 11px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .unavailable-compact {
        padding: 10px 12px;
        gap: 10px;
    }

    .unavailable-message {
        font-size: 12px;
    }

    .unavailable-message i {
        font-size: 14px;
    }

    .ai-suggestion-compact {
        padding: 5px 8px;
        font-size: 10px;
        border-radius: 4px;
    }

    .ai-suggestion-compact i {
        font-size: 12px;
    }
}

/* Smart Suggestions List (Legacy) */
.smart-suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.smart-suggestion-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.smart-suggestion-item:hover {
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.smart-suggestion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.smart-suggestion-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-smart-badge {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.smart-variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.smart-variant-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    transition: all 0.2s ease;
}

.smart-variant-item:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.smart-variant-domain {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 14px;
}

.smart-variant-price {
    color: #059669;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 16px;
}

.smart-buy-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.smart-buy-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

/* AI Suggestions Display (Legacy) */
.ai-suggestions-display {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid #10b981;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Header */
.ai-suggestions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.ai-suggestions-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-suggestions-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.ai-suggestions-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.ai-suggestions-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

/* Input Form */
.ai-suggestions-form {
    margin-bottom: 24px;
}

.ai-form-group {
    margin-bottom: 16px;
}

.ai-form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    font-size: 14px;
}

.ai-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.ai-form-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.ai-form-input::placeholder {
    color: #9ca3af;
}

.ai-generate-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ai-generate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.ai-generate-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Loading State */
.ai-suggestions-loading {
    text-align: center;
    padding: 40px 20px;
}

.ai-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #10b981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ai-loading-text {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
}

/* Suggestions List */
.ai-suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.ai-suggestion-item {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ai-suggestion-item:hover {
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.ai-suggestion-item.selected {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.ai-suggestion-domain {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-suggestion-tlds {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ai-suggestion-tld {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ai-suggestion-tld:hover {
    background: #059669;
    transform: scale(1.05);
}

/* AI Badge */
.ai-powered-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Error State */
.ai-suggestions-error {
    text-align: center;
    padding: 40px 20px;
    color: #ef4444;
}

.ai-error-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #fca5a5;
}

.ai-error-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #dc2626;
}

.ai-error-message {
    color: #6b7280;
    margin-bottom: 16px;
}

.ai-retry-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ai-retry-btn:hover {
    background: #dc2626;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-suggestions-header-card {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .ai-header-content {
        justify-content: center;
    }

    .ai-generate-smart-btn {
        width: 100%;
        justify-content: center;
    }

    .smart-variants-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ai-suggestions-display {
        padding: 20px 16px;
        margin: 16px 0;
        border-radius: 12px;
    }

    .ai-suggestions-title {
        font-size: 18px;
    }

    .ai-suggestion-item {
        padding: 16px;
    }

    .ai-suggestion-domain {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .ai-suggestions-header-card {
        padding: 20px 16px;
    }

    .ai-header-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .ai-header-text h4 {
        font-size: 18px;
    }

    .ai-smart-content {
        padding: 16px;
    }

    .smart-suggestion-item {
        padding: 16px;
    }

    .smart-suggestion-name {
        font-size: 16px;
    }

    .smart-variant-item {
        padding: 12px;
    }

    .ai-suggestions-display {
        padding: 16px 12px;
        margin: 12px 0;
    }

    .ai-suggestions-btn {
        padding: 10px 16px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }

    .ai-suggestion-domain {
        font-size: 15px;
    }
}

/* ===================================
   UTILITY CLASSES
   ===================================
   JavaScript-controlled states and animations
*/

.js-hidden {
    display: none !important;
}

.js-flex {
    display: flex !important;
}

.js-block {
    display: block !important;
}

.js-fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.js-fade-out {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Error State Animations */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.js-shake {
    animation: shake 0.5s ease-in-out;
}

/* Success State Animations */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.js-bounce {
    animation: bounce 0.6s ease-in-out;
}

/* ===================================
   TECHNICAL SPECIFICATIONS SECTION
   ===================================
   Styles for Node.js hosting technical specs
*/

.technical-specs-section {
    padding: 80px 0;
    background: #f8fafc;
}

.technical-specs-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.technical-specs-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.technical-specs-section .section-title p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 0;
}

.spec-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.spec-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-card h4 i {
    color: #3b82f6;
    font-size: 1.3rem;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    padding: 12px 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 28px;
    border-bottom: 1px solid #f1f5f9;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.spec-list li strong {
    color: #1e293b;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .technical-specs-section {
        padding: 60px 0;
    }

    .technical-specs-section .section-title h2 {
        font-size: 2rem;
    }

    .spec-card {
        padding: 24px;
        margin-bottom: 24px;
    }

    .spec-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .technical-specs-section {
        padding: 50px 0;
    }

    .technical-specs-section .section-title {
        margin-bottom: 40px;
    }

    .technical-specs-section .section-title h2 {
        font-size: 1.8rem;
    }

    .technical-specs-section .section-title p {
        font-size: 1rem;
    }

    .spec-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .spec-card h4 {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .spec-list li {
        font-size: 0.95rem;
        padding: 10px 0;
        padding-left: 24px;
    }
}

@media (max-width: 576px) {
    .technical-specs-section {
        padding: 40px 0;
    }

    .technical-specs-section .section-title h2 {
        font-size: 1.6rem;
    }

    .spec-card {
        padding: 16px;
        border-radius: 12px;
    }

    .spec-card h4 {
        font-size: 1.1rem;
        gap: 8px;
    }

    .spec-card h4 i {
        font-size: 1.1rem;
    }

    .spec-list li {
        font-size: 0.9rem;
        padding: 8px 0;
        padding-left: 20px;
    }
}

/* ===================================
   FEATURE CTA SECTION
   ===================================
   Styles for platform advantages and security CTA
*/

.feature-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.feature-cta h3 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
}

.feature-cta p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: white;
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.cta-buttons .btn-outline-primary {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

.cta-buttons .btn-outline-primary:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

@media (max-width: 768px) {
    .feature-cta {
        padding: 30px 20px;
    }

    .feature-cta h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}