/**
 * WeHostName Custom Theme Stylesheet
 * Exact match for https://wehostname.com/
 */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&display=swap');

:root {
    --wh-purple-main: #5716A4;
    --wh-purple-dark: #471CA8;
    --wh-purple-light: #7E30E1;
    --wh-purple-subtle: rgba(87, 22, 164, 0.08);
    --wh-purple-glow: 0 4px 25px -2px rgba(87, 22, 164, 0.35);

    --wh-nav-bg: #1A0E34;
    --wh-nav-dark: #12092B;
    --wh-footer-bg: #12092B;

    --wh-orange-accent: #FF6A3D;
    --wh-orange-hover: #E05327;

    --wh-bg-page: #F8F3FE;
    --wh-bg-card: #FFFFFF;
    --wh-bg-subtle: #F3ECFA;

    --wh-text-headline: #11052C;
    --wh-text-body: #3E3E3E;
    --wh-text-muted: #6B7280;
    --wh-text-light: #9CA3AF;

    --wh-border-card: #EADCF8;
    --wh-border-subtle: #E5E7EB;

    --wh-radius-pill: 9999px;
    --wh-radius-box: 18px;
    --wh-radius-card: 24px;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
html, body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    background-color: var(--wh-bg-page) !important;
    color: var(--wh-text-body) !important;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist', sans-serif !important;
    color: var(--wh-text-headline);
    font-weight: 800;
    letter-spacing: -0.03em;
}

a {
    color: var(--wh-purple-main);
    transition: all 0.2s ease;
}

a:hover {
    color: var(--wh-purple-dark);
    text-decoration: none;
}

/* ==========================================================================
   Exact Floating Navbar (wehostname.com)
   ========================================================================== */
header#header.header {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: relative !important;
    top: 0 !important;
    z-index: 1050 !important;
    padding: 0.5rem 0 !important;
    transition: all 0.25s ease;
}

.wh-floating-nav-wrapper {
    width: 95%;
    max-width: 1240px;
    margin: 0 auto;
}

.wh-floating-nav {
    background: var(--wh-nav-bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 16px 36px -4px rgba(18, 9, 43, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
}

.wh-nav-hamburger {
    background: transparent !important;
    border: none !important;
    color: #FFFFFF !important;
    font-size: 20px;
    cursor: pointer;
    padding: 0.25rem 0.5rem !important;
    outline: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}

.wh-nav-hamburger:hover {
    transform: scale(1.08);
}

/* ==========================================================================
   Mobile Drawer Overlay (Exact Replica of wehostname.com Mobile Menu)
   ========================================================================== */
.wh-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #1A0E34;
    z-index: 99999;
    padding: 1.5rem 1.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.wh-mobile-drawer.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wh-mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.wh-mobile-drawer-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}

.wh-mobile-drawer-close:hover {
    transform: scale(1.1);
}

.wh-mobile-drawer-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.wh-btn-mobile-login {
    flex: 1;
    height: 48px;
    border: 1.5px solid #5716A4 !important;
    background: transparent !important;
    color: #FFFFFF !important;
    border-radius: 14px !important;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.wh-btn-mobile-login:hover {
    background: rgba(87, 22, 164, 0.2) !important;
    color: #FFFFFF !important;
}

.wh-btn-mobile-getstarted {
    flex: 1;
    height: 48px;
    border: none !important;
    background: #5716A4 !important;
    color: #FFFFFF !important;
    border-radius: 14px !important;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(87, 22, 164, 0.4);
    transition: all 0.2s ease;
}

.wh-btn-mobile-getstarted:hover {
    background: #471CA8 !important;
    color: #FFFFFF !important;
}

.wh-mobile-drawer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.wh-mobile-drawer-links > li > a {
    color: #FFFFFF !important;
    font-size: 1.35rem;
    font-weight: 700;
    font-family: 'Urbanist', sans-serif;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.15s ease;
}

.wh-mobile-drawer-links > li > a:hover {
    color: var(--wh-orange-accent) !important;
}

.wh-mobile-sublinks {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    margin-top: 0.5rem;
    gap: 0.75rem;
}

.wh-mobile-has-sub.expanded .wh-mobile-sublinks {
    display: flex;
}

.wh-mobile-sublinks a {
    color: #CBD5E1 !important;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none !important;
}

.wh-floating-nav .navbar-brand {
    padding: 0;
    margin-right: 1.5rem;
    display: inline-flex;
    align-items: center;
}

.wh-floating-nav .navbar-brand img {
    height: 36px;
    width: auto;
}

.wh-nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wh-nav-link {
    color: #FFFFFF !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.wh-nav-link:hover {
    color: var(--wh-orange-accent) !important;
}

.wh-nav-dropdown {
    position: relative;
}

.wh-nav-dropdown:hover .wh-dropdown-menu,
.wh-nav-dropdown.show .wh-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wh-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #1A0E34;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 0.5rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
    margin-top: 0.6rem;
    z-index: 1060;
    transition: all 0.2s ease;
}

/* User Profile Menu (Pinned strictly to right edge inside screen) */
.wh-user-dropdown-container {
    position: relative !important;
}

.wh-user-dropdown-menu,
.wh-dropdown-menu.dropdown-menu-right,
.wh-nav-actions .dropdown-menu {
    left: auto !important;
    right: 0 !important;
    min-width: 245px !important;
    max-width: 90vw !important;
    transform: none !important;
}

.wh-user-dropdown-container.show .wh-user-dropdown-menu,
.wh-nav-actions .dropdown.show .wh-dropdown-menu,
.wh-dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.wh-dropdown-menu .dropdown-item,
.wh-dropdown-menu a {
    color: #E2E8F0 !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    padding: 0.6rem 0.9rem !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 8px !important;
    transition: all 0.15s ease !important;
    background: transparent !important;
    text-decoration: none !important;
    font-family: 'Urbanist', sans-serif !important;
}

.wh-dropdown-menu .dropdown-item:hover,
.wh-dropdown-menu .dropdown-item:focus,
.wh-dropdown-menu a:hover {
    background: rgba(87, 22, 164, 0.35) !important;
    color: #FFFFFF !important;
    transform: translateX(3px) !important;
}

.wh-dropdown-menu .dropdown-item i {
    width: 20px !important;
    text-align: center !important;
    margin-right: 0.5rem !important;
    color: #A78BFA !important;
}

.wh-dropdown-menu .dropdown-item.text-danger {
    color: #F87171 !important;
}

.wh-dropdown-menu .dropdown-item.text-danger i {
    color: #EF4444 !important;
}

.wh-dropdown-menu .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 0.5rem 0 !important;
}

.wh-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.wh-btn-login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF !important;
    border-radius: var(--wh-radius-pill);
    padding: 0.45rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.wh-btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: #FFFFFF !important;
}

.wh-btn-getstarted {
    background: var(--wh-purple-main);
    border: none;
    color: #FFFFFF !important;
    border-radius: var(--wh-radius-pill);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(87, 22, 164, 0.4);
    transition: all 0.2s ease;
}

.wh-btn-getstarted:hover {
    background: var(--wh-purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(87, 22, 164, 0.55);
    color: #FFFFFF !important;
}

.wh-cart-badge {
    background: var(--wh-orange-accent);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 9999px;
    margin-left: 0.35rem;
}

/* ==========================================================================
   Hero & Domain Search (Matching wehostname.com)
   ========================================================================== */
.wh-hero-section {
    padding: 2rem 0 4rem;
    text-align: center;
    position: relative;
}

.wh-hero-carousel-container {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.2);
}

.wh-hero-carousel-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.wh-hero-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 9, 43, 0.2) 0%, rgba(18, 9, 43, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
}

.wh-carousel-dots {
    background: #1A0E34;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    padding: 0.4rem 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.wh-carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
}

.wh-carousel-dots .dot.active {
    background: var(--wh-purple-light);
    width: 10px;
    height: 10px;
}

.wh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #11052C;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.wh-hero-badge i {
    color: var(--wh-orange-accent);
    font-size: 1.15rem;
}

.wh-hero-title {
    font-size: 3.25rem;
    font-weight: 900;
    color: #11052C;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

@media (max-width: 768px) {
    .wh-hero-title {
        font-size: 2.25rem;
    }
}

.wh-hero-subtitle {
    font-size: 1.15rem;
    color: #4B5563;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.55;
    font-weight: 500;
}

/* Domain Search Container */
.wh-domain-container {
    max-width: 740px;
    margin: 0 auto;
}

.wh-domain-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 700;
}

.wh-domain-tab {
    color: #4B5563;
    cursor: pointer;
    padding-bottom: 0.25rem;
    transition: all 0.15s ease;
}

.wh-domain-tab.active {
    color: var(--wh-purple-main);
    border-bottom: 2px solid var(--wh-purple-main);
}

.wh-domain-tab-divider {
    color: #D1D5DB;
}

.wh-domain-search-box {
    background: #FFFFFF;
    border: 1.5px solid #E5D5F8;
    border-radius: var(--wh-radius-pill);
    padding: 6px 8px 6px 1.5rem;
    box-shadow: 0 8px 25px -4px rgba(87, 22, 164, 0.12);
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.wh-domain-search-box:focus-within {
    border-color: var(--wh-purple-main);
    box-shadow: 0 10px 30px -4px rgba(87, 22, 164, 0.25), 0 0 0 3px rgba(87, 22, 164, 0.15);
}

.wh-domain-input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 1.1rem;
    font-family: 'Urbanist', sans-serif;
    color: #11052C;
}

.wh-domain-btn {
    background: var(--wh-purple-main);
    border: none;
    color: #FFFFFF !important;
    border-radius: var(--wh-radius-pill);
    padding: 0.75rem 2.25rem;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.wh-domain-btn:hover {
    background: var(--wh-purple-dark);
    transform: scale(1.02);
}

.wh-tld-list {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.wh-tld-tag {
    color: #11052C;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.15s ease;
}

.wh-tld-tag:hover {
    color: var(--wh-purple-main);
}

/* ==========================================================================
   Feature Showcases (3 Rows matching wehostname.com)
   ========================================================================== */
.wh-feature-section {
    padding: 4rem 0;
}

.wh-feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (max-width: 768px) {
    .wh-feature-row {
        flex-direction: column !important;
        text-align: center;
    }
}

.wh-feature-text {
    flex: 1;
    max-width: 480px;
}

.wh-feature-text h3 {
    font-size: 2.15rem;
    font-weight: 800;
    color: #11052C;
    margin-bottom: 1rem;
}

.wh-feature-text p {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.6;
}

.wh-feature-media {
    flex: 1;
    display: flex;
    justify-content: center;
}

.wh-feature-media img {
    max-width: 100%;
    max-height: 380px;
    height: auto;
    object-fit: contain;
}

/* ==========================================================================
   Hosting Services Cards (wehostname.com)
   ========================================================================== */
.wh-services-section {
    padding: 4rem 0;
}

.wh-services-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.wh-services-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #11052C;
    margin-bottom: 0.75rem;
}

.wh-services-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 650px;
    margin: 0 auto;
}

.wh-service-card-wide {
    background: #FFFFFF;
    border: 1px solid var(--wh-border-card);
    border-radius: var(--wh-radius-card);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 10px 30px -5px rgba(87, 22, 164, 0.08);
    margin-bottom: 2rem;
    transition: all 0.25s ease;
}

.wh-service-card-wide:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -5px rgba(87, 22, 164, 0.15);
    border-color: var(--wh-purple-light);
}

.wh-service-card-wide .info {
    max-width: 580px;
}

.wh-service-card-wide h3,
.wh-service-card-half h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #11052C;
    margin-bottom: 0.75rem;
}

.wh-service-card-wide p,
.wh-service-card-half p {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.6;
}

.wh-service-card-half {
    background: #FFFFFF;
    border: 1px solid var(--wh-border-card);
    border-radius: var(--wh-radius-card);
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px -5px rgba(87, 22, 164, 0.08);
    transition: all 0.25s ease;
}

.wh-service-card-half:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -5px rgba(87, 22, 164, 0.15);
    border-color: var(--wh-purple-light);
}

.wh-service-card-half .img-wrap {
    height: 120px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.wh-service-card-half .img-wrap img {
    max-height: 100%;
    width: auto;
}

/* ==========================================================================
   Additional Hosting Features & Hire Us
   ========================================================================== */
.wh-additional-features {
    padding: 4rem 0;
}

.wh-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
}

.wh-checklist li {
    font-size: 1.05rem;
    font-weight: 700;
    color: #11052C;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.wh-checklist li i {
    color: var(--wh-orange-accent);
    font-size: 1.15rem;
}

.wh-btn-hire {
    background: var(--wh-purple-main);
    border: none;
    color: #FFFFFF !important;
    border-radius: var(--wh-radius-pill);
    padding: 0.85rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.2s ease;
}

.wh-btn-hire:hover {
    background: var(--wh-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(87, 22, 164, 0.4);
}

/* ==========================================================================
   Exact Footer (wehostname.com)
   ========================================================================== */
footer#footer.wh-footer {
    background: var(--wh-footer-bg) !important;
    color: #9CA3AF !important;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 5rem 0 2.5rem !important;
    margin-top: 4rem;
    position: relative;
}

.wh-footer-content-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .wh-footer-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .wh-footer-content-grid {
        grid-template-columns: 1fr;
    }
}

.wh-footer-col h5 {
    color: #FFFFFF !important;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.wh-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wh-footer-col ul li {
    margin-bottom: 0.85rem;
}

.wh-footer-col ul li a {
    color: #9CA3AF !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.wh-footer-col ul li a:hover {
    color: #FFFFFF !important;
    padding-left: 4px;
}

.wh-footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* ==========================================================================
   Client Area & Inner WHMCS Pages
   ========================================================================== */
.card, .panel {
    background: #FFFFFF;
    border: 1px solid var(--wh-border-card);
    border-radius: var(--wh-radius-box);
    box-shadow: 0 4px 20px -2px rgba(87, 22, 164, 0.06);
}

.btn-primary {
    background-color: var(--wh-purple-main) !important;
    border-color: var(--wh-purple-main) !important;
    color: #FFFFFF !important;
    border-radius: var(--wh-radius-pill);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--wh-purple-dark) !important;
    border-color: var(--wh-purple-dark) !important;
}

.btn-outline-primary {
    color: var(--wh-purple-main) !important;
    border-color: var(--wh-purple-main) !important;
    border-radius: var(--wh-radius-pill);
    font-weight: 700;
}

.btn-outline-primary:hover {
    background-color: var(--wh-purple-main) !important;
    color: #FFFFFF !important;
}

.badge-info {
    background-color: var(--wh-purple-main) !important;
}

/* ==========================================================================
   Complete WHMCompleteSolution & WHMCS Branding Removal
   ========================================================================== */
a[href*="whmcs.com"],
a[href*="whmcompletesolution"],
p:has(a[href*="whmcs.com"]),
p:has(a[href*="whmcompletesolution"]),
div:has(> a[href*="whmcs.com"]),
div:has(> a[href*="whmcompletesolution"]),
center:has(a[href*="whmcs.com"]),
center:has(a[href*="whmcompletesolution"]),
.whmcs-branding,
.powered-by-whmcs {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    pointer-events: none !important;
}

/* ==========================================================================
   WeHostName Auth Pages (Login, Signup, Forgot Password)
   Exact replica of https://wehostname.com/auth/
   ========================================================================== */
.wh-auth-viewport {
    width: 100%;
    min-height: 100vh;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
}

.wh-auth-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Left Hero Brand Panel */
.wh-auth-side {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
    position: relative;
    color: #FFFFFF;
    overflow: hidden;
    min-height: 100vh;
}

.wh-auth-side-purple {
    background: linear-gradient(145deg, #0B0025 0%, #1A0550 50%, #2D0A7A 100%);
}

.wh-auth-side-orange {
    background: linear-gradient(145deg, #0B0025 0%, #1A0550 50%, #2D0A7A 100%);
}

.wh-auth-side-navy {
    background: linear-gradient(145deg, #0B0025 0%, #1A0550 50%, #2D0A7A 100%);
}

/* Feature bullets on auth sidebar */
.wh-auth-features {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0 0;
}

.wh-auth-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.5rem;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.wh-auth-features li .wh-feat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    margin-top: 1px;
}

.wh-auth-features li .wh-feat-text strong {
    display: block;
    font-weight: 700;
    color: #fff;
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.wh-auth-features li .wh-feat-text span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}

.wh-auth-brand {
    z-index: 2;
}

.wh-auth-logo {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.wh-auth-hero-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 0;
    padding: 2rem 0;
    z-index: 2;
}

.wh-auth-hero-illustration img {
    max-width: 88%;
    max-height: 52vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.wh-auth-hero-illustration img:hover {
    transform: scale(1.02);
}

.wh-auth-footer-text {
    z-index: 2;
}

.wh-auth-footer-text h3 {
    font-family: 'Urbanist', sans-serif !important;
    font-size: 1.85rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: -0.02em;
}

.wh-auth-footer-text p {
    font-family: 'Urbanist', sans-serif !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    max-width: 440px !important;
}

/* Right Form Panel */
.wh-auth-form-side {
    flex: 0 0 55%;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    padding: 3rem 2rem;
    min-height: 100vh;
    overflow-y: auto;
}

.wh-auth-form-container {
    width: 100%;
    max-width: 450px;
    margin: auto;
    padding: 1.5rem 0;
}

.wh-auth-form-container.wh-auth-form-wide {
    max-width: 580px;
}

.wh-auth-title {
    font-family: 'Urbanist', sans-serif !important;
    font-size: 2.3rem !important;
    font-weight: 800 !important;
    color: #11052C !important;
    text-align: center;
    margin-bottom: 0.4rem !important;
    letter-spacing: -0.03em;
}

.wh-auth-subtitle {
    font-family: 'Urbanist', sans-serif !important;
    color: #4B5563 !important;
    font-size: 1.05rem !important;
    text-align: center;
    margin-bottom: 2rem !important;
    font-weight: 500;
}

/* Auth Input Fields */
.wh-auth-form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.wh-auth-label {
    display: block;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    color: #4B5563;
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
}

.wh-auth-input {
    width: 100%;
    height: 52px;
    background: #F9FAFB !important;
    border: 1.5px solid #E5E7EB !important;
    border-radius: 12px !important;
    padding: 0 1.25rem !important;
    font-size: 0.97rem !important;
    color: #11052C !important;
    font-family: 'Urbanist', sans-serif !important;
    transition: all 0.2s ease;
    box-shadow: none;
    outline: none !important;
}

.wh-auth-input:focus {
    border-color: #5018A7 !important;
    background: #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(80, 24, 167, 0.1) !important;
}

.wh-auth-input::placeholder {
    color: #9CA3AF !important;
    font-weight: 400;
}

select.wh-auth-input {
    appearance: none;
    -webkit-appearance: none;
    background: #F9FAFB url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%234B5563%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") no-repeat right 1.25rem center !important;
    background-size: 0.6rem auto !important;
    padding-right: 3rem !important;
}

.wh-auth-input-wrapper {
    position: relative;
}

.wh-auth-pw-toggle {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
}

.wh-auth-forgot-link {
    text-align: right;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.wh-auth-forgot-link a {
    color: #11052C;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.wh-auth-forgot-link a:hover {
    color: #5018A7;
    text-decoration: underline;
}

/* Auth Submit Button */
.wh-btn-auth-submit {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #5018A7 0%, #3A0D82 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 14px !important;
    font-family: 'Urbanist', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(80, 24, 167, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-decoration: none !important;
    letter-spacing: 0.01em;
}

.wh-btn-auth-submit:hover {
    background-color: #3E1284 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(80, 24, 167, 0.38);
    color: #FFFFFF !important;
}

/* Bottom Nav Prompt */
.wh-auth-bottom-prompt {
    text-align: center;
    font-size: 0.95rem;
    color: #11052C;
    margin-top: 1rem;
    font-family: 'Urbanist', sans-serif;
}

.wh-auth-bottom-prompt a {
    color: #11052C;
    font-weight: 700;
    text-decoration: none;
}

.wh-auth-bottom-prompt a:hover {
    color: #5018A7;
    text-decoration: underline;
}

/* Alerts inside auth card */
.wh-auth-form-container .alert {
    border-radius: 16px !important;
    font-size: 0.95rem;
    padding: 0.85rem 1.25rem;
    margin-bottom: 1.5rem;
    border: none;
}

.wh-auth-form-container .alert-danger {
    background-color: #FEE2E2;
    color: #991B1B;
}

.wh-auth-form-container .alert-success {
    background-color: #D1FAE5;
    color: #065F46;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .wh-auth-side {
        display: none !important;
    }
    
    .wh-auth-form-side {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 2.5rem 1.5rem;
    }

    .wh-auth-form-container {
        max-width: 100%;
    }
}

/* ==========================================================================
   WeHostName Client Area Dashboard (Exact Match to Mockup)
   ========================================================================== */

/* Navbar Avatar Button */
.wh-nav-avatar-btn {
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    background-color: #FF6A3D !important;
    color: #FFFFFF !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none !important;
    font-size: 19px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(255, 106, 61, 0.35);
    padding: 0 !important;
}

.wh-nav-avatar-btn:hover,
.wh-nav-avatar-btn:focus {
    background-color: #E05327 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 106, 61, 0.45);
    color: #FFFFFF !important;
}

/* Dashboard Container */
.wh-dashboard-wrapper {
    padding: 1.5rem 0 3.5rem;
}

/* Dashboard Card Standard */
.wh-dash-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(87, 22, 164, 0.07);
    box-shadow: 0 4px 20px rgba(87, 22, 164, 0.04);
    padding: 1.5rem;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.wh-dash-card:hover {
    box-shadow: 0 8px 30px rgba(87, 22, 164, 0.07);
}

.wh-dash-card-header {
    margin-bottom: 1.15rem;
}

.wh-dash-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #11052C;
    margin: 0;
    font-family: 'Urbanist', sans-serif;
    letter-spacing: -0.02em;
}

.wh-dash-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

/* 4 Stat Cards Grid */
.wh-dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
}

.wh-stat-card {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid rgba(87, 22, 164, 0.07);
    box-shadow: 0 4px 18px rgba(87, 22, 164, 0.03);
    padding: 1.25rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    text-decoration: none !important;
    transition: all 0.22s ease;
    color: inherit;
}

.wh-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(87, 22, 164, 0.08);
    border-color: rgba(87, 22, 164, 0.2);
    text-decoration: none !important;
}

.wh-stat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background-color: #F4ECFB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5018A7;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.wh-stat-card:hover .wh-stat-icon-wrap {
    background-color: #5018A7;
    color: #FFFFFF;
}

.wh-stat-info {
    display: flex;
    flex-direction: column;
}

.wh-stat-label {
    font-size: 0.9rem;
    color: #11052C;
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    margin-bottom: 2px;
}

.wh-stat-value {
    font-size: 1.85rem;
    font-weight: 800;
    color: #11052C;
    line-height: 1.1;
    font-family: 'Urbanist', sans-serif;
}

/* Large Numbers for Feature Cards */
.wh-large-stat-number {
    font-size: 2.85rem;
    font-weight: 800;
    color: #11052C;
    line-height: 1;
    font-family: 'Urbanist', sans-serif;
}

.wh-empty-state-text {
    font-size: 0.95rem;
    color: #4B5563;
    margin-bottom: 0.85rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
}

.wh-link-open-ticket,
.wh-link-action {
    color: #5018A7 !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    font-family: 'Urbanist', sans-serif;
}

.wh-link-open-ticket:hover,
.wh-link-action:hover {
    color: #380E7A !important;
    text-decoration: underline !important;
}

/* Mini Lists (Active Services & Recent Tickets) */
.wh-service-mini-item,
.wh-ticket-mini-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    background-color: #F8F3FE;
    margin-bottom: 0.5rem;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.2s ease;
}

.wh-service-mini-item:hover,
.wh-ticket-mini-item:hover {
    background-color: #EFE4FC;
    color: inherit;
    text-decoration: none !important;
}

.wh-service-name,
.wh-ticket-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #11052C;
    display: block;
}

.wh-service-domain,
.wh-ticket-tid {
    font-size: 0.8rem;
    color: #6B7280;
    display: block;
}

.wh-btn-mini-manage {
    font-size: 0.8rem;
    font-weight: 700;
    color: #5018A7;
    background: #FFFFFF;
    border: 1px solid rgba(80, 24, 167, 0.2);
    padding: 4px 12px;
    border-radius: 9999px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.wh-btn-mini-manage:hover {
    background-color: #5018A7;
    color: #FFFFFF;
}

.wh-badge-ticket-status {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    text-transform: capitalize;
}

.wh-badge-ticket-open {
    background-color: #D1FAE5;
    color: #065F46;
}

.wh-badge-ticket-closed {
    background-color: #E5E7EB;
    color: #4B5563;
}

.wh-badge-ticket-customer-reply,
.wh-badge-ticket-answered {
    background-color: #FEF3C7;
    color: #92400E;
}

/* Domain Search Card (Right side) */
.wh-domain-search-container {
    background-color: #ECE8F2;
    border-radius: 12px;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.wh-domain-search-container:focus-within {
    border-color: #5018A7;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(80, 24, 167, 0.12);
}

.wh-domain-search-input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 0.95rem;
    color: #11052C;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    height: 40px;
    padding: 0 !important;
}

.wh-domain-search-input::placeholder {
    color: #8C8A99;
}

.wh-btn-domain-register {
    width: 100%;
    height: 48px;
    background-color: #5018A7 !important;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    border: none !important;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(80, 24, 167, 0.25);
    font-family: 'Urbanist', sans-serif;
}

.wh-btn-domain-register:hover {
    background-color: #3E1284 !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(80, 24, 167, 0.35);
}

.wh-btn-domain-transfer {
    width: 100%;
    height: 48px;
    background-color: transparent !important;
    color: #5018A7 !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    border: 1.5px solid #5018A7 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Urbanist', sans-serif;
}

.wh-btn-domain-transfer:hover {
    background-color: #F4ECFB !important;
    color: #5018A7 !important;
}

/* Account Info Card (Right side) */
.wh-account-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FF6A3D;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(255, 106, 61, 0.3);
}

.wh-account-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #11052C;
    font-family: 'Urbanist', sans-serif;
}

.wh-account-bell {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #F8F3FE;
    color: #11052C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.wh-account-bell:hover {
    background-color: #5018A7;
    color: #FFFFFF;
}

.wh-acc-link-item {
    display: flex;
    align-items: center;
    padding: 0.65rem 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-family: 'Urbanist', sans-serif;
}

.wh-acc-link-item:hover {
    color: #5018A7;
    padding-left: 4px;
}

/* Responsive tweaks for Dashboard */
@media (max-width: 991.98px) {
    .wh-dash-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .wh-dash-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Homepage Mobile Responsiveness (Exact match to wehostname.com mobile)
   ========================================================================== */
@media (max-width: 991.98px) {
    .wh-floating-nav-wrapper {
        width: 92%;
    }
    
    .wh-floating-nav {
        padding: 0.6rem 1.15rem;
    }
}

@media (max-width: 768px) {
    /* Hero & Carousel */
    .wh-hero-section {
        padding: 1.25rem 0 2.5rem;
    }

    .wh-hero-carousel-container {
        border-radius: 20px;
        margin: 0.5rem auto 1.5rem;
        max-width: 95%;
    }

    .wh-hero-carousel-img {
        height: 200px;
    }

    .wh-hero-badge {
        font-size: 0.85rem;
        margin-bottom: 0.85rem;
    }

    .wh-hero-title {
        font-size: 2rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.65rem !important;
        padding: 0 0.5rem;
    }

    .wh-hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.55 !important;
        margin: 0 auto 1.75rem !important;
        padding: 0 0.75rem;
    }

    /* Domain Search Mobile (Matches mobile_domain_search_features_1789463711931.png) */
    .wh-domain-container {
        padding: 0 0.75rem;
    }

    .wh-domain-tabs {
        font-size: 0.95rem;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .wh-domain-search-box {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        flex-direction: column !important;
        padding: 0 !important;
        gap: 0.75rem !important;
    }

    .wh-domain-input {
        background-color: #D8D8DF !important;
        border-radius: 12px !important;
        height: 50px !important;
        padding: 0 1.25rem !important;
        font-size: 1rem !important;
        width: 100% !important;
        border: none !important;
        color: #11052C !important;
        box-shadow: none !important;
    }

    .wh-domain-btn {
        width: 100% !important;
        border-radius: 12px !important;
        height: 50px !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: #5018A7 !important;
        box-shadow: 0 4px 14px rgba(80, 24, 167, 0.3) !important;
        border: none !important;
    }

    .wh-tld-list {
        gap: 0.75rem;
        margin-top: 1.15rem;
    }

    .wh-tld-tag {
        font-size: 0.9rem;
    }

    /* Feature Sections (Matches mobile_services_cards_1789463725348.png) */
    .wh-feature-section {
        padding: 2.5rem 1rem 1rem !important;
    }

    .wh-feature-row {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .wh-feature-row.flex-row-reverse {
        flex-direction: column !important;
    }

    .wh-feature-text {
        max-width: 100% !important;
        text-align: center !important;
    }

    .wh-feature-text h3 {
        font-size: 1.65rem !important;
        font-weight: 800 !important;
        margin-bottom: 0.6rem !important;
    }

    .wh-feature-text p {
        font-size: 0.98rem !important;
        line-height: 1.55 !important;
        color: #3E3E3E !important;
        margin: 0 auto 1.25rem !important;
        max-width: 92% !important;
    }

    .wh-feature-media {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .wh-feature-media img {
        max-height: 240px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }

    /* Hosting Services Cards (Matches mobile_hosting_cards_1789463741879.png) */
    .wh-services-section {
        padding: 2.5rem 1rem !important;
    }

    .wh-services-header {
        margin-bottom: 2rem !important;
    }

    .wh-services-header h2 {
        font-size: 1.85rem !important;
        line-height: 1.2 !important;
    }

    .wh-services-header p {
        font-size: 0.95rem !important;
        line-height: 1.55 !important;
    }

    .wh-service-card-wide {
        flex-direction: column !important;
        padding: 2rem 1.5rem !important;
        border-radius: 24px !important;
        text-align: left !important;
        gap: 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }

    .wh-service-card-wide .media {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        order: -1 !important; /* Graphic shown on top on mobile */
        margin-bottom: 1rem !important;
    }

    .wh-service-card-wide .media img {
        max-height: 180px !important;
        width: auto !important;
    }

    .wh-service-card-wide h3,
    .wh-service-card-half h3 {
        font-size: 1.6rem !important;
        margin-bottom: 0.65rem !important;
    }

    .wh-service-card-wide p,
    .wh-service-card-half p {
        font-size: 0.95rem !important;
        line-height: 1.55 !important;
    }

    .wh-service-card-half {
        padding: 2rem 1.5rem !important;
        border-radius: 24px !important;
        margin-bottom: 1.25rem !important;
    }

    .wh-service-card-half .img-wrap {
        height: 110px !important;
        margin-bottom: 1rem !important;
        display: flex !important;
        justify-content: flex-start !important;
    }

    /* Additional Features */
    .wh-additional-features {
        padding: 2.5rem 1rem !important;
    }

    .wh-additional-features h2 {
        font-size: 1.85rem !important;
        text-align: left !important;
    }

    .wh-additional-features h4 {
        font-size: 1.45rem !important;
        margin-bottom: 0.75rem !important;
    }

    .wh-checklist {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
        margin: 1.25rem 0 1.75rem !important;
    }

    .wh-btn-hire {
        width: 100% !important;
        text-align: center !important;
        padding: 0.85rem 1.5rem !important;
    }

    /* Footer Mobile */
    footer#footer.wh-footer {
        padding: 3.5rem 1.5rem 2rem !important;
        border-top-left-radius: 28px !important;
        border-top-right-radius: 28px !important;
        margin-top: 3rem !important;
    }

    .wh-footer-content-grid {
        grid-template-columns: 1fr !important;
        gap: 2.25rem !important;
        margin-bottom: 2.5rem !important;
    }
}

/* ==========================================================================
   WeHostName WHMCS Shopping Cart & Order Form (standard_cart) Integration
   ========================================================================== */
#order-standard_cart {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    color: #1E293B;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

#order-standard_cart h1,
#order-standard_cart h2,
#order-standard_cart h3,
#order-standard_cart h4,
#order-standard_cart h5 {
    font-family: 'Urbanist', sans-serif !important;
    font-weight: 800;
    color: #0F172A;
}

#order-standard_cart .header-lined {
    margin-bottom: 2rem;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 1rem;
}

#order-standard_cart .domain-checker-container {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid #F1F5F9;
    margin-bottom: 2rem;
}

#order-standard_cart .domain-checker-bg {
    background: transparent;
    padding: 0;
}

#order-standard_cart .domain-checker-container input[type="text"] {
    height: 56px;
    border-radius: 12px 0 0 12px !important;
    border: 1.5px solid #E2E8F0;
    font-size: 1.05rem;
    font-family: 'Urbanist', sans-serif;
    padding: 0.75rem 1.25rem;
    color: #0F172A;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#order-standard_cart .domain-checker-container input[type="text"]:focus {
    border-color: #5716A4;
    box-shadow: 0 0 0 4px rgba(87, 22, 164, 0.12);
}

#order-standard_cart .domain-checker-container .btn-primary {
    background: #5716A4 !important;
    border-color: #5716A4 !important;
    color: #FFFFFF !important;
    border-radius: 0 12px 12px 0 !important;
    padding: 0 2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
}

#order-standard_cart .domain-checker-container .btn-primary:hover {
    background: #460e87 !important;
    border-color: #460e87 !important;
    transform: translateY(-1px);
}

#order-standard_cart .cart-sidebar .list-group {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    border: 1px solid #E2E8F0;
}

#order-standard_cart .cart-sidebar .list-group-item {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.25rem;
    border-color: #F1F5F9;
    color: #475569;
    transition: all 0.2s ease;
}

#order-standard_cart .cart-sidebar .list-group-item.active {
    background-color: #5716A4 !important;
    border-color: #5716A4 !important;
    color: #FFFFFF !important;
}

#order-standard_cart .cart-sidebar .list-group-item:hover:not(.active) {
    background-color: #F8FAFC;
    color: #5716A4;
    padding-left: 1.5rem;
}

#order-standard_cart .domain-lookup-result {
    margin-top: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
}

#order-standard_cart .btn-order-now,
#order-standard_cart .btn-add-to-cart {
    background: #FF6A3D !important;
    border-color: #FF6A3D !important;
    color: #FFFFFF !important;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.2s ease;
}

#order-standard_cart .btn-order-now:hover,
#order-standard_cart .btn-add-to-cart:hover {
    background: #E55A2D !important;
    border-color: #E55A2D !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 106, 61, 0.35);
}

#order-standard_cart .order-summary {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

#order-standard_cart .order-summary .total-due-today {
    background: #0D1026;
    color: #FFFFFF;
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1rem;
}

#order-standard_cart .btn-checkout {
    background: #5716A4 !important;
    border-color: #5716A4 !important;
    color: #FFFFFF !important;
    border-radius: 12px;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.2s ease;
}

#order-standard_cart .btn-checkout:hover {
    background: #460e87 !important;
    border-color: #460e87 !important;
    box-shadow: 0 6px 18px rgba(87, 22, 164, 0.35);
}


