/* =============================================
   General / Layout
   ============================================= */

.logo {
    max-width: 260px;
}

.mmme-2 {
    margin-right: -10px !important;
}

.scrolltop-btn {
    display: none !important;
}

.header-right .header-search {
    display: none !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: rgb(255 255 255 / 75%);
    content: var(--bs-breadcrumb-divider, "/");
}
/* =============================================
   Nav — Cart
   ============================================= */

.product-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-cart-wrapper {
    position: relative;
    display: inline-block;
}

.badge-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #ff3b30;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.badge-count:empty {
    display: none !important;
}

.cart-count-realtime {
    display: none;
}

.cart-count-realtime.cart-badge-visible {
    display: flex;
}


/* =============================================
   Domain Search — libs/js/domain-search.js
   ============================================= */

.ds-searching-text {
    color: #333;
    font-size: 14px;
    margin-bottom: 12px;
}

.ds-error-msg {
    color: #dc3545;
}

.domain-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ds-card-available {
    opacity: 1;
}

.ds-card-taken {
    opacity: 0.7;
}

.ds-card-info {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ds-status-icon {
    font-size: 16px;
}

.ds-icon-avail {
    color: #28a745;
}

.ds-icon-taken {
    color: #dc3545;
}

.ds-price {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 13px;
}

.ds-buy-btn {
    padding: 6px 18px !important;
    font-size: 13px !important;
    text-decoration: none !important;
    border-radius: 5px !important;
}

.ds-taken-badge {
    color: #bbb;
    font-size: 12px;
    border: 1px solid #555;
    padding: 5px 12px;
    border-radius: 5px;
}


/* =============================================
   Domain Page — libs/js/domain-page.js
   ============================================= */

.dm-target-result {
    margin-top: 20px;
    min-height: 50px;
}

.dm-searching-text {
    color: #fff;
    margin-bottom: 15px;
}

.sk-box {
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sk-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: shm 1.5s infinite;
}

@keyframes shm {
    0%   { left: -100%; }
    100% { left: 100%; }
}

.res-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to   { opacity: 1; transform: translateY(0); }
}

.res-row-taken {
    opacity: 0.7;
}

.dm-res-info {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dm-icon-avail { color: #28a745; }
.dm-icon-taken { color: #ff4d4d; }
.dm-icon-mr    { margin-right: 8px; }

.dm-res-price {
    margin-left: 10px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

.dm-error-msg {
    color: #ff4d4d;
}


/* =============================================
   Contact Form — libs/js/contact-form.js
   ============================================= */

.cf-success {
    color: green;
}

.cf-error {
    color: red;
}


/* =============================================
   Newsletter Form — libs/js/newsletter-form.js
   ============================================= */

.nf-info {
    color: #007bff;
}

.nf-success {
    color: #28a745;
}

.nf-warning {
    color: #ffc107;
}

.nf-error {
    color: #dc3545;
}


/* =============================================
   contact.php
   ============================================= */

.contact-form-heading {
    color: #333;
}

/* Remove any underline from contact heading */
.cz-contact-section .ct-section-title h2::after,
.cz-contact-section .ct-section-title h2::before,
.cz-contact-section .contact-form-heading::after,
.cz-contact-section .contact-form-heading::before {
    display: none !important;
}

/* contact form fl-group override */
.hm-contact-form .fl-group input,
.hm-contact-form .fl-group textarea {
    width: 100%;
    border: 1px solid rgba(221, 221, 221, 0.6);
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease;
    padding: 18px 14px 6px 14px !important;
    margin-top: 0 !important;
}

.hm-contact-form .fl-group input {
    height: 52px;
}

.hm-contact-form .fl-group textarea {
    height: auto;
    padding-top: 22px !important;
    resize: vertical;
}

.hm-contact-form .fl-group input:focus,
.hm-contact-form .fl-group textarea:focus {
    border-color: #1c40f2;
}

.hm-contact-form .fl-group label {
    display: block !important;
    position: absolute !important;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    font-weight: 400 !important;
    color: #999 !important;
    pointer-events: none;
    transition: all 0.18s ease;
    background: transparent;
    padding: 0 3px;
    margin: 0 !important;
    line-height: 1;
}

.hm-contact-form .fl-group-textarea label {
    top: 22px;
    transform: none;
}

.hm-contact-form .fl-group input:focus + label,
.hm-contact-form .fl-group input:not(:placeholder-shown) + label,
.hm-contact-form .fl-group textarea:focus + label,
.hm-contact-form .fl-group textarea:not(:placeholder-shown) + label {
    top: 0 !important;
    transform: translateY(-50%) !important;
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    color: #1c40f2 !important;
    background: #fff !important;
    padding: 0 4px !important;
}

.contact-form-response {
    display: none;
    font-weight: bold;
    font-size: 18px;
}


/* =============================================
   404.php
   ============================================= */

.page-404-section {
    min-height: 70vh;
}

.page-404-heading {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
}


/* =============================================
   home.php — Pricing Toggle Switches
   ============================================= */

.custom-switch-wrapper {
    min-width: 280px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #111827;
}

[data-bs-theme="dark"] .custom-switch-wrapper {
    background: #1e293b;
    color: #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.toggle-container {
    width: 50px;
    height: 26px;
    background: #e0e0e0;
    border-radius: 30px;
    position: relative;
    transition: 0.3s;
}

.toggle-container:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #007aff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: 0.3s;
}

.switch-input:checked + .toggle-container:before {
    left: 27px;
    background: #007aff;
}

.switch-input {
    display: none;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #ff3b30;
    width: 25px;
}


/* =============================================
   footer.php
   ============================================= */

.footer-honeypot {
    display: none !important;
}

.footer-response-msg {
    margin-top: 10px;
    font-size: 14px;
}

.footer-live-badge {
    font-size: 12px;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(40, 167, 69, 0.2);
    display: inline-flex;
    align-items: center;
}

.footer-live-dot-icon {
    font-size: 10px;
}

.live-dot {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%   { transform: scale(0.95); opacity: 0.7; }
    50%  { transform: scale(1.2);  opacity: 1;   }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.footer-contact-icon {
    font-size: 18px;
    color: #007bff;
    width: 35px;
    height: 35px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-phone-link {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.footer-email-link {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.footer-bottom-border {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-payment-desktop {
    max-width: 1170px;
    border-radius: 5px;
}

.footer-payment-mobile {
    border-radius: 5px;
}

.footer-security-text {
    font-size: 14px;
    opacity: 0.6;
}


/* =============================================
   Auth Pages — login.php / register.php
   ============================================= */

.auth-msg {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.auth-msg-error {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.25);
}

.auth-msg-success {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.25);
}

.auth-forgot-link {
    font-size: 13px;
    color: #007bff;
    text-decoration: none;
}

.auth-forgot-link:hover {
    text-decoration: underline;
}


/* =============================================
   Responsive
   ============================================= */

@media (max-width: 991px) {
    .logo-wrapper .logo {
        max-height: 30px;
    }
}

@media (max-width: 991.98px) {
    .nav-menu {
        padding: 15px 15px;
    }
}


/* =============================================
   Dark Mode Fixes — countdown & toggle
   ============================================= */

/* Notice Bar countdown box — dark mode */
[data-bs-theme="dark"] .nt-downcount li {
    background-color: #1e293b;
}
[data-bs-theme="dark"] .nt-downcount li span:first-child {
    color: #f1f5f9 !important;
}
[data-bs-theme="dark"] .nt-downcount li span:last-child {
    color: #94a3b8 !important;
}

/* Super sale countdown (noticebar expanded) */
[data-bs-theme="dark"] .sp-downcount-timer li .box {
    background-color: #1e293b;
    color: #f1f5f9 !important;
}
[data-bs-theme="dark"] .sp-downcount-timer li .subtitle {
    color: #94a3b8 !important;
}

/* Pricing toggle switch — dark mode */
[data-bs-theme="dark"] .custom-switch-wrapper {
    background: #1e293b;
    color: #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
[data-bs-theme="dark"] .custom-switch-wrapper .fw-bold {
    color: #f1f5f9 !important;
}
[data-bs-theme="dark"] .toggle-container {
    background: #475569;
}


/* =============================================
   Home Page Domain Search — white bg fix
   domain-search-box এ white background তাই
   card text color dark করতে হবে
   ============================================= */

.domain-search-box .domain-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}

.domain-search-box .ds-card-info {
    color: #1a1a2e;
}

.domain-search-box .ds-card-available {
    border-left: 3px solid #28a745;
}

.domain-search-box .ds-card-taken {
    border-left: 3px solid #dc3545;
}

.domain-search-box .ds-price {
    background: rgba(0, 0, 0, 0.06);
    color: #333;
}

.domain-search-box .ds-taken-badge {
    color: #666;
    border-color: #ccc;
}

.domain-search-box .ds-searching-text {
    color: #333;
}

.domain-search-box .skeleton-item {
    height: 55px;
    background: #e9ecef;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.domain-search-box .skeleton-item::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shm 1.5s infinite;
}

.skeleton-wrapper {
    margin-top: 10px;
}


/* =============================================
   Domain Search — Smart Grouping Layout
   ============================================= */

.ds-results-wrap {
    margin-top: 14px;
    animation: fadeIn 0.3s ease;
}

/* Primary Card */
.ds-primary-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid transparent;
}

.ds-primary-avail {
    background: #f0fdf4;
    border-color: #28a745;
}

.ds-primary-taken {
    background: #fff5f5;
    border-color: #dc3545;
    opacity: 0.85;
}

.ds-primary-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ds-primary-icon {
    font-size: 22px;
    line-height: 1;
}

.ds-primary-domain {
    display: block;
    font-size: 17px;
    color: #1a1a2e;
    font-weight: 700;
}

.ds-primary-status {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.ds-primary-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ds-primary-price {
    font-size: 15px;
    font-weight: 700;
    color: #28a745;
}

/* Skeleton primary */
.ds-skeleton-primary {
    height: 70px !important;
}

/* Others section */
.ds-others-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin: 14px 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.ds-others-wrap .domain-card {
    padding: 10px 16px;
    margin-bottom: 6px;
}

/* Domain page — dark bg primary card variants */
.ds-primary-avail-dark {
    background: rgba(40, 167, 69, 0.15);
    border: 2px solid #28a745;
}

.ds-primary-taken-dark {
    background: rgba(220, 53, 69, 0.15);
    border: 2px solid #dc3545;
    opacity: 0.85;
}

/* Domain page skeleton primary */
.sk-box-primary {
    height: 70px !important;
}


/* =============================================
   Nav Dropdown Banner Card
   ============================================= */

.nav-dropdown-banner {
    background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
    border-radius: 12px;
    padding: 22px 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-dropdown-banner::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.nav-dropdown-banner::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -20px;
    width: 150px; height: 150px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.nav-banner-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
}

.nav-dropdown-banner h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.nav-dropdown-banner p {
    color: rgba(255,255,255,0.75);
    font-size: 12.5px;
    margin: 0;
    line-height: 1.5;
}

.nav-banner-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 2px 0;
}

.nav-banner-features span {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-banner-features span i {
    color: #4ade80;
    font-size: 10px;
    flex-shrink: 0;
}

.nav-banner-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 2px;
}

.nav-banner-from {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
}

.nav-banner-price strong {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.nav-banner-price strong small {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

.nav-banner-btn {
    display: inline-block;
    background: #fff;
    color: #1a56db !important;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 16px !important;
    border-radius: 8px;
    text-decoration: none !important;
    margin-top: auto;
    width: fit-content;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.nav-banner-btn:hover {
    background: #f0f6ff;
    transform: translateY(-1px);
}


/* Nav align right */
.nav-wrapper nav ul {
    justify-content: flex-end !important;
}


/* Client Area nav button */
.nav-client-btn {
    display: inline-flex;
    align-items: center;
    background: #1a56db;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s;
    margin-right: 6px;
}
.nav-client-btn:hover {
    background: #1e40af;
}


/* Header right col — remove fixed width gap */
.nav-menu .col-xl-2.col-lg-3.col-6 {
    width: auto !important;
    flex: 0 0 auto !important;
    padding-left: 8px;
}


/* Mobile nav fix — ms-auto only on lg+ */
@media (max-width: 991px) {
    .nav-menu .col-xl-8.col-lg-7.ms-auto {
        margin-left: 0 !important;
    }
    .nav-menu .col-xl-2.col-lg-3.col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
}

/* Footer column fix */
.footer-widget-2 {
    border-left: none !important;
    padding-left: 0 !important;
}
/* ===== Override main.css signup-form-wrapper conflicts ===== */
.signup-form-wrapper form .fl-group label {
    display: block !important;
    position: absolute !important;
    color: #999 !important;
    font-weight: 400 !important;
    margin-top: 0 !important;
}
.signup-form-wrapper form .fl-group input {
    padding: 18px 14px 6px 14px !important;
    margin-top: 0 !important;
}
/* ===== Floating Label - fl-group ===== */
.fl-group {
    position: relative;
    margin-bottom: 20px;
}

.fl-group input {
    width: 100%;
    height: 52px;
    padding: 18px 14px 6px 14px;
    border: 1px solid rgba(221, 221, 221, 0.6);
    border-radius: 4px;
    font-size: 1rem;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease;
}

.fl-group input:focus {
    border-color: #1c40f2;
}

/* Label — default position: vertically centered inside input */
.fl-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    font-weight: 400;
    color: #999;
    pointer-events: none;
    transition: all 0.18s ease;
    background: transparent;
    padding: 0 3px;
    margin: 0;
    line-height: 1;
}

/* Label floats up when focused or has value */
.fl-group input:focus + label,
.fl-group input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.72rem;
    font-weight: 500;
    color: #1c40f2;
    background: #fff;
    padding: 0 4px;
}
/* ===== End Floating Label ===== */

/* ── Dark mode - fl-group inputs ── */
[data-bs-theme="dark"] .fl-group input,
[data-bs-theme="dark"] .fl-group textarea,
[data-bs-theme="dark"] .hm-contact-form .fl-group input,
[data-bs-theme="dark"] .hm-contact-form .fl-group textarea {
    background: #0f172a !important;
    color: #e2e8f0 !important;
    border-color: #334155 !important;
}
[data-bs-theme="dark"] .fl-group input:focus,
[data-bs-theme="dark"] .fl-group textarea:focus,
[data-bs-theme="dark"] .hm-contact-form .fl-group input:focus,
[data-bs-theme="dark"] .hm-contact-form .fl-group textarea:focus {
    border-color: #60a5fa !important;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15) !important;
}
[data-bs-theme="dark"] .fl-group label,
[data-bs-theme="dark"] .hm-contact-form .fl-group label {
    color: #64748b !important;
}
[data-bs-theme="dark"] .fl-group input:focus + label,
[data-bs-theme="dark"] .fl-group input:not(:placeholder-shown) + label,
[data-bs-theme="dark"] .fl-group textarea:focus + label,
[data-bs-theme="dark"] .fl-group textarea:not(:placeholder-shown) + label,
[data-bs-theme="dark"] .hm-contact-form .fl-group input:focus + label,
[data-bs-theme="dark"] .hm-contact-form .fl-group input:not(:placeholder-shown) + label,
[data-bs-theme="dark"] .hm-contact-form .fl-group textarea:focus + label,
[data-bs-theme="dark"] .hm-contact-form .fl-group textarea:not(:placeholder-shown) + label {
    color: #60a5fa !important;
    background: #1e293b !important;
    font-weight: 600 !important;
    padding: 0 5px !important;
}

/* =============================================
   Contact Section — Clean White + Border Accent
   ============================================= */

.cz-contact-section {
    background: #fff;
    position: relative;
}

/* Top colored bar */
.cz-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(95.45deg, #0082F8 0.64%, #1C40F2 98.23%);
    border-radius: 0 0 4px 4px;
}

/* Subtle corner accent — bottom right */
.cz-contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 100% 100%,
        rgba(28, 64, 242, 0.06) 0%,
        rgba(0, 130, 248, 0.03) 50%,
        transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Left side accent */
.cz-contact-section .cz-left-accent {
    position: absolute;
    top: 60px;
    left: 0;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 0% 0%,
        rgba(28, 64, 242, 0.05) 0%,
        transparent 65%);
    pointer-events: none;
    z-index: -1;
}



/* Form wrapper card */
.cz-contact-section .hm-contact-form {
    background: #fff;
    border: 1px solid rgba(28, 64, 242, 0.12);
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 20px 40px rgba(28, 64, 242, 0.05);
    position: relative;
}

/* Dark mode — form card */
[data-bs-theme="dark"] .cz-contact-section .hm-contact-form {
    background: #1e293b !important;
    border-color: rgba(96, 165, 250, 0.15) !important;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3) !important;
}
[data-bs-theme="dark"] .cz-contact-section .hm-contact-form .fl-group input,
[data-bs-theme="dark"] .cz-contact-section .hm-contact-form .fl-group textarea {
    background: #0f172a !important;
    border-color: #334155 !important;
    color: #e2e8f0 !important;
}
[data-bs-theme="dark"] .cz-contact-section .hm-contact-form .fl-group input:focus + label,
[data-bs-theme="dark"] .cz-contact-section .hm-contact-form .fl-group input:not(:placeholder-shown) + label,
[data-bs-theme="dark"] .cz-contact-section .hm-contact-form .fl-group textarea:focus + label,
[data-bs-theme="dark"] .cz-contact-section .hm-contact-form .fl-group textarea:not(:placeholder-shown) + label {
    background: #1e293b !important;
    color: #60a5fa !important;
    font-weight: 600 !important;
    padding: 0 5px !important;
}
[data-bs-theme="dark"] .cz-contact-section {
    background: #0f172a !important;
}
[data-bs-theme="dark"] .contact-form-heading {
    color: #e2e8f0 !important;
}

/* Card top-left corner accent */
.cz-contact-section .hm-contact-form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 40px;
    width: 80px;
    height: 3px;
    background: linear-gradient(95.45deg, #0082F8 0.64%, #1C40F2 98.23%);
    border-radius: 0 0 3px 3px;
}

@media (max-width: 767.98px) {
    .cz-contact-section .hm-contact-form {
        padding: 32px 20px;
    }
    .cz-contact-section .hm-contact-form::before {
        left: 20px;
    }
}

/* =============================================
   Domain Register / Transfer Tabs
   ============================================= */

.cz-domain-tabs {
    display: inline-flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px;
    border-radius: 5px;
    margin-bottom: 16px;
}

.cz-domain-tab {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 5px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.75) !important;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.cz-domain-tab i {
    color: rgba(255, 255, 255, 0.75) !important;
}

.cz-domain-tab:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15);
}

.cz-domain-tab:hover i {
    color: #fff !important;
}

.cz-domain-tab.active {
    background: #fff !important;
    color: #1c40f2 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

.cz-domain-tab.active i {
    color: #1c40f2 !important;
}

/* Transfer form — uses same dm-hero-domain-form style as register form */

/* =============================================
   Transfer Page — Steps
   ============================================= */

.cz-transfer-step {
    background: #fff;
    border: 1px solid rgba(28, 64, 242, 0.1);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.cz-transfer-step:hover {
    box-shadow: 0 20px 50px rgba(28, 64, 242, 0.08);
    border-color: rgba(28, 64, 242, 0.2);
    transform: translateY(-4px);
}

.cz-step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(95.45deg, #0082F8 0.64%, #1C40F2 98.23%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.cz-step-number {
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1c40f2;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* =============================================
   Transfer Page — Benefits
   ============================================= */

.cz-transfer-benefit {
    padding: 28px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.cz-transfer-benefit:hover {
    border-color: rgba(28, 64, 242, 0.15);
    box-shadow: 0 12px 30px rgba(28, 64, 242, 0.07);
}

.cz-benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(95.45deg, rgba(0, 130, 248, 0.1) 0.64%, rgba(28, 64, 242, 0.1) 98.23%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1c40f2;
    flex-shrink: 0;
}

/* Domain search form — border radius 5px */
.dm-hero-domain-form {
    border-radius: 5px !important;
    overflow: hidden;
}
.dm-hero-domain-form input[type=text] {
    border-radius: 0 !important;
}
.dm-hero-domain-form input[type=submit] {
    border-radius: 0 5px 5px 0 !important;
}

/* =============================================
   Pricing Card — Description Equal Height
   সব card এ desc সমান height রাখে।
   ============================================= */

.pricing-desc {
    font-size: 18px;
    font-weight: 500;
    margin-top: 1rem;
    /* 2 lines clamp — সব card এ exactly 2 lines */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    /* line-height × 2 = fixed 2-line height */
    line-height: 1.45;
    min-height: calc(1.45em * 2);
}


/* =============================================
   Pricing Card — Hover Shadow Fix
   বাম-ডান ছড়ানো shadow ঠিক করা।
   overflow:hidden + tight centered shadow দিয়ে
   main card নষ্ট না করে শুধু নিচে shadow।
   ============================================= */

.pricing-column {
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.pricing-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.18) !important;
}