/* ================================
   Top Navigation Bar Styles
   ================================ */

.top-nav {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 2px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-left .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #495057;
}

.top-nav-left .contact-info i {
    margin-right: -15px;
    color: #6c757d;
    font-size: 12px;
    margin-left: 5px;
}

.top-nav-right .top-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    align-items: center;
}

.top-nav-right .top-nav-links li a {
    color: #495057;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-nav-right .top-nav-links li a:hover {
    color: #fd5d07;
}

.top-nav-right .top-nav-links li a i {
    font-size: 16px;
}

/* Adjust main header position to account for top nav */
#header.header {
    top: 28px;
}

/* ================================
   Mega Menu Styles with Icons & Descriptions
   ================================ */

.mega-menu-item .mega-menu {
    min-width: 700px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 15px;
    background: #fff;
}

.mega-menu-item .mega-menu li {
    margin: 0;
}

.mega-menu-item .mega-menu li a {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 6px;
}

.mega-menu-item .mega-menu li a:hover {
    background-color: #f8f9fa;
}

.mega-menu-item .mega-menu li a i {
    font-size: 24px;
    color: #fd5d07;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-menu-item .mega-menu li a .mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.mega-menu-item .mega-menu li a strong {
    font-size: 14px;
    color: #212529;
    font-weight: 600;
    display: block;
}

.mega-menu-item .mega-menu li a small {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.4;
    display: block;
}

.mega-menu-item .mega-menu li a:hover strong {
    color: #fd5d07;
}

/* ================================
   Regular Dropdown Enhancements
   ================================ */

.navmenu .dropdown-menu {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 5px 0;
    background: #fff;
    min-width: 280px;
}

.navmenu .dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navmenu .dropdown-menu li a {
    padding: 7px 15px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    justify-content: flex-start !important;
    text-align: left !important;
}

.navmenu .dropdown-menu li a i {
    font-size: 20px !important;
    color: #fd5d07 !important;
    flex-shrink: 0 !important;
    /* width: 24px !important; */
    /* height: 24px !important; */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    margin-top: 2px !important;
}

.navmenu .dropdown-menu li a .mega-menu-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0px !important;
}

.navmenu .dropdown-menu li a .mega-menu-content strong {
    font-size: 14px !important;
    color: #212529 !important;
    font-weight: 600 !important;
    display: block !important;
    line-height: 1.3 !important;
}

.navmenu .dropdown-menu li a .mega-menu-content small {
    font-size: 12px !important;
    color: #6c757d !important;
    line-height: 1.4 !important;
    display: block !important;
}

.navmenu .dropdown-menu li a:hover {
    background-color: #f8f9fa;
}

.navmenu .dropdown-menu li a:hover .mega-menu-content strong {
    color: #fd5d07 !important;
}

/* ================================
   Client Login Dropdown Styles
   ================================ */

.client-login-wrapper {
    position: relative;
}

.client-login-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.client-login-trigger i {
    font-size: 15px;
}

.client-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 0px;
    min-width: 220px;
    padding: 5px 0;
    margin-top: 0px;
    z-index: 1000;
    list-style: none;
}

.client-login-wrapper:hover .client-dropdown,
.client-dropdown:hover {
    display: block;
}

.client-dropdown li[role="none"] {
    margin: 0;
}

.client-dropdown .dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2px 10px;
    color: #495057;
    text-decoration: none;
    border-bottom: 1px solid #f7f7f7;
    font-size: 14px;
}

.client-dropdown .dropdown-link:hover {
    background-color: #f8f9fa;
    color: #fd5d07;
}

.client-dropdown .dropdown-link i {
    font-size: 18px;
    width: 20px;
    color: #fd5d07;
}

.client-dropdown .dropdown-divider {
    height: 1px;
    background-color: #e9ecef;
    margin: 5px 0;
}

/* ================================
   Mobile Navigation Fixes
   ================================ */

@media (max-width: 1199px) {
    .top-nav {
        display: none;
    }
    
    #header.header {
        top: 0;
    }
    
    /* Fix header layout on mobile */
    #header .container {
        display: grid !important;
        grid-template-columns: 1fr auto auto;
        align-items: center;
        gap: 10px;
    }
    
    #header .logo {
        grid-column: 1;
        margin: 0 !important;
    }
    
    #header .client-login-wrapper {
        grid-column: 2;
        order: 2;
    }
    
    #header .mobile-nav-toggle {
        grid-column: 3;
        order: 3;
    }
    
    /* Mega menu becomes single column on mobile */
    .mega-menu-item .mega-menu {
        grid-template-columns: 1fr !important;
        min-width: auto;
        max-width: 100%;
    }
    
    /* Client dropdown on mobile */
    .client-dropdown {
        position: static;
        display: none;
        border: none;
        margin-top: 0;
        padding: 0;
    }
    
    .client-login-wrapper:hover .client-dropdown {
        display: block;
    }
    
    /* Improve mobile nav menu */
    .navmenu {
        background: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
    }
    
    .navmenu ul {
        padding: 55px 0;
    }
    
    .navmenu ul li {
        padding: 0 1px;
    }
    
    .navmenu ul li a {
        padding: 8px 10px;
        font-size: 15px;
    }
}

/* Fix main content width on mobile */
@media (max-width: 768px) {
    main {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .top-nav-left .contact-info {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }
    
    .top-nav-right .top-nav-links {
        gap: 8px;
        font-size: 12px;
    }
}

/* ================================
   Footer Styles - Matching Contact Section
   ================================ */

.footer-top {
    padding: 40px 0 20px;
    border-bottom: 1px solid #e9ecef;
    /* background-color: #f8f9fa; */
    padding: 30px 0 10px 0px;
}

.footer-top h4 {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
}

.footer-top .icon {
    font-size: 20px;
    color: #fd5d07;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer-top p {
    margin: 0;
    line-height: 1.8;
}

.footer-top p a {
    color: #6c757d;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2px;
}

.footer-top p a:hover {
    color: #fd5d07;
}

.footer-bottom {
    padding: 30px 0 20px;
}

.footer-bottom .icon {
    font-size: 20px;
    color: #fd5d07;
    margin-right: 5px;
    flex-shrink: 0;
}

.footer-bottom h4 {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

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

.payment-methods i {
    font-size: 24px;
    color: #6c757d;
}

.payment-methods i:hover {
    color: #fd5d07;
}

.social-links a {
    color: #6c757d;
    margin-right: 10px;
}

.social-links a:hover {
    color: #fd5d07;
}

/* ================================
   Payment Methods & Footer Links
   ================================ */

.payment-info-wrapper {
    text-align: center;
}

.payment-info-line {
    gap: 8px;
    font-size: 14px;
    color: #495057;
    padding: 0px 15px;
    align-items: center;
}

.payment-info-line strong {
    font-weight: 600;
    color: #212529;
}

.payment-info-line img {
    height: 24px;
    width: auto;
    opacity: 0.8;
    margin: 0 2px;
}

.payment-info-line img:hover {
    opacity: 1;
}

.payment-info-line .more-payments {
    color: #fd5d07;
    font-size: 13px;
    font-weight: 500;
}

.payment-info-line i {
    font-size: 20px;
    color: #6c757d;
    margin: 0 4px;
}

.footer-links {
    font-size: 14px;
    padding: 0px 15px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 5px 0 0px;
    font-weight: 600;
}

.footer-links a:hover {
    font-family: inter;
    color: #fd5d07;
    text-decoration: underline;
    text-decoration: none;
    text-rendering: optimizeLegibility;
}

.clarity-notice {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    display: contents;
}

.clarity-notice p {
    font-size: 11px;
    line-height: 1.6;
}

.clarity-notice a {
    color: #fd5d07;
    text-decoration: none;
    font-weight: 600;
}

.clarity-notice a:hover {
    text-decoration: none;
}

.copyright-line {
    gap: 15px;
    padding: 0px 0;
    min-height: 30px;
}

.copyright-line p {
    font-size: 13px;
    color: #495057;
    text-align: left;
    line-height: 1.6;
    flex: 1;
}

.copyright-line .ispa-logo {
    height: 45px;
    width: auto;
    flex-shrink: 0;
    background-color: #cc0f0f;
    border: 5px solid #cc0f0f;
    margin-top: -35px;
}

.copyright p {
    margin-bottom: 8px;
    font-size: 14px;
}

.copyright .text-muted {
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-info-line {
        flex-direction: row;
        gap: 6px;
        text-align: left;
        justify-content: left;
        flex-wrap: wrap;
        padding: 8px 0;
        margin-left: 15px;
    }
    
    .payment-info-line strong {
        font-size: 12px;
    }
    
    .payment-info-line > span {
        display: none;
    }
    
    .payment-info-line img {
        margin: 0 2px;
        height: 18px;
    }
    
    .payment-info-line i {
        font-size: 18px;
        margin: 0 3px;
    }
    
    .copyright-line {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 10px 0;
    }
    
    .copyright-line p {
        text-align: left;
        font-size: 12px;
        line-height: 1.7;
        padding: 0px 15px;
    }
    
    .copyright-line .ispa-logo {
        height: 28px;
        margin: 0 auto;
    }
    
    .clarity-notice {
        padding: 0 10px;
    }
    
    .clarity-notice p {
        font-size: 10px;
        line-height: 1.5;
        padding: 0px 15px;
    }
    
    .footer-links {
        font-size: 11px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .payment-info-line {
        padding: 6px 0;
        gap: 4px;
    }
    
    .payment-info-line strong {
        font-size: 14px;
    }
    
    .payment-info-line > span {
        display: none;
        text-align: left;
    }
    
    .payment-info-line i {
        font-size: 16px;
        margin: 0 2px;
    }
    
    .copyright-line {
        padding: 8px 15px;
        gap: 12px;
    }
    
    .copyright-line p {
        font-size: 11px;
        line-height: 1.8;
        padding: 0 5px !important;!i;!;!o;!o,;!o;!;
    }
    
    .copyright-line .ispa-logo {
        height: 40px;
        text-align: left;
        display: inline-block;
        background-color: #cc0f0f;
        border: 5px solid #cc0f0f;
        position: relative;
    }
    
    .clarity-notice p {
        font-size: 9px;
        line-height: 1.6;
        padding: 0px 20px;
        text-align: left;
        padding-bottom: 10px;
    }
    
    .footer-links {
        font-size: 10px;
        text-align: left;
    }
    
    .footer-links a {
        display: inline-block;
        margin: 4px 3px;
        line-height: 1.6;
    }
}


/* ================================
   PHASE 3: New Homepage Sections Styles
   Harmonized with Existing Design System
   ================================ */

/* Domain Search Section - World-Class Design */
.domain-search {
    padding: 120px 0 0px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    background: #fff;
}

.domain-search::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(40%, -40%);
    pointer-events: none;
}

.domain-search .section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 8px 24px;
    margin: 0 0 16px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);
}

.domain-search .section-title div {
    color: var(--heading-color);
    margin: 0 0 10px 0;
    font-size: 30px;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1.2;
}

/* Search Form - Premium Style */
.domain-search-form {
    margin-top: 0;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.search-input-group {
    display: flex;
    background: var(--surface-color);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 0px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 20px 60px rgba(253, 93, 7, 0.15);
}

.input-with-icon {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.www-prefix {
    position: absolute;
    left: 52px;
    font-size: 17px;
    font-weight: 600;
    color: var(--default-color);
    font-family: var(--default-font);
    pointer-events: none;
    z-index: 1;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.input-with-icon .form-control-lg {
    width: 100%;
    height: 54px;
    border: none;
    padding: 0 170px 0 98px;
    font-size: 17px;
    font-family: var(--default-font);
    background: transparent;
    color: var(--default-color);
    font-weight: 600;
}

.input-with-icon .form-control-lg:focus {
    outline: none;
}

.input-with-icon .form-control-lg::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.extension-dropdown {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-left: 16px;
    display: flex;
    align-items: center;
}

.tld-select {
    height: 54px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    font-family: var(--default-font);
    cursor: pointer;
    padding: 0 40px 0 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23212529' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    appearance: none;
}

.tld-select:focus {
    outline: none;
}

.btn-search {
    height: 48px;
    padding: 0 48px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--default-font);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 4px;
}

.btn-search:hover {
    background: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 93, 7, 0.3);
}

/* Transfer Link */
.transfer-link-wrapper {
    text-align: center;
    margin: 10px 0 20px;
    font-size: 15px;
}

.transfer-text {
    color: var(--default-color);
    margin-right: 8px;
    font-family: var(--default-font);
}

.transfer-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    font-family: var(--default-font);
    transition: all 0.2s ease;
}

.transfer-link:hover {
    color: color-mix(in srgb, var(--accent-color), #000 15%);
    text-decoration: underline;
}

/* TLD Pricing Cards - Premium Grid */
.tld-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 0;
}

.tld-card {
    background: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 16px;
    padding: 0px 10px 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tld-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff8c00 50%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tld-card:hover::before {
    transform: scaleX(1);
}

.tld-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tld-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    min-height: 24px;
}

.tld-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-color);
    background: #f7f7f7;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    min-width: 108px;
}

.tld-discount {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    background: #f7f7f7;
    padding: 4px 7px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.tld-extension {
    font-size: 32px;
    font-weight: 800;
    color: var(--heading-color);
    margin: 0px 0 1px;
    font-family: var(--heading-font);
    letter-spacing: -0.5px;
}

.tld-pricing {
    margin-bottom: 10px;
}

.price-sale {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--heading-font);
    line-height: 1;
    margin-bottom: 6px;
}

.price-sale span {
    font-size: 14px;
    font-weight: 500;
    color: var(--default-color);
    margin-left: 2px;
}

.price-regular {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-decoration: line-through;
    font-weight: 500;
}

.btn-register {
    display: block;
    width: 100%;
    padding: 7px 20px;
    background: #fff;
    color: #000;
    border: 1px solid #fd5d07;
    border-radius: 5px;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    font-family: var(--default-font);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-register:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.view-all-tlds {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    font-family: var(--default-font);
    transition: all 0.2s ease;
    display: inline-block;
}

.view-all-tlds:hover {
    color: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .domain-search {
        padding: 60px 0;
    }
    
    .domain-search .section-title div {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .input-with-icon .form-control-lg {
        height: 56px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding-left: 48px;
    }
    
    .extension-dropdown {
        border-left: none;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding: 0;
    }
    
    .tld-select {
        height: 56px;
        width: 100%;
    }
    
    .btn-search {
        height: 56px;
        width: 100%;
        border-radius: 0 0 12px 12px;
    }
    
    .tld-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tld-card {
        padding: 20px 16px;
    }
    
    .tld-extension {
        font-size: 26px;
        margin: 16px 0 12px;
    }
    
    .price-sale {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .tld-pricing-grid {
        grid-template-columns: 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}


@media (max-width: 410px) {
    .tld-pricing-grid {
        grid-template-columns: 1fr;
  
    }
}


/* Why Choose Us - Domain Features */
.why-choose-domain {
    padding: 80px 0;
}

.why-choose-domain .section-heading {
    font-size: calc(22px + 1vw);
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.domain-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.domain-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon-box svg {
    width: 30px;
    height: 30px;
    fill: var(--accent-color);
}

.domain-feature-item:hover .feature-icon-box {
    background: var(--accent-color);
    transform: scale(1.1);
}

.domain-feature-item:hover .feature-icon-box svg {
    fill: var(--contrast-color);
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
    font-family: var(--heading-font);
}

.feature-content p {
    font-size: 15px;
    color: var(--default-color);
    margin: 0;
    line-height: 1.6;
}

.domain-illustration {
    background: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.domain-illustration img {
    max-width: 100%;
    height: auto;
}

/* Domain Tips Section */
.domain-tips {
    padding: 80px 0;
    background: var(--background-color);
}

.tip-card {
    background: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tip-card:hover::before {
    transform: scaleX(1);
}

.tip-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tip-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s ease;
}

.tip-card:hover .tip-icon {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: rotateY(360deg);
}

/* Tip Icon Styles */
.short-icon::before { content: '📏'; }
.simple-icon::before { content: '✨'; }
.check-icon::before { content: '✓'; }
.brand-icon::before { content: '🛡️'; }
.local-icon::before { content: '📍'; }
.fast-icon::before { content: '⚡'; }

.tip-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tip-card p {
    font-size: 15px;
    color: var(--default-color);
    line-height: 1.6;
    margin: 0;
}

/* How to Register Section */
.how-to-register {
    padding: 80px 0;
}

.how-to-register .section-subtitle {
    font-size: 17px;
    color: var(--default-color);
    max-width: 800px;
    margin: 20px auto 50px;
}

.register-step {
    background: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.register-step:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    font-family: var(--heading-font);
    box-shadow: 0 4px 15px rgba(253, 93, 7, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 30px auto 24px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.3s ease;
}

.register-step:hover .step-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Step Icon Styles */
.search-icon::before { content: '🔍'; }
.cart-icon::before { content: '🛒'; }
.complete-icon::before { content: '✅'; }

.register-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 16px;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-step p {
    font-size: 15px;
    color: var(--default-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 768px) {
    .why-choose-domain,
    .domain-tips,
    .how-to-register {
        padding: 60px 0;
    }
    
    .domain-features-list {
        gap: 25px;
    }
    
    .domain-illustration {
        min-height: 300px;
        padding: 30px;
        margin-top: 30px;
    }
    
    .tip-card,
    .register-step {
        padding: 30px 20px;
    }
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    background-color: #f7f7f7;
}

.trusted-by .section-title h2 {
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 500;
    padding: 8px 20px;
    margin: 0 0 10px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);
}

.trusted-by .section-title p {
    color: var(--heading-color);
    margin: 10px 0 40px 0;
    font-size: calc(16px + 1vw);
    font-weight: 600;
    font-family: var(--heading-font);
}

.trust-stat {
    padding: 40px 30px;
    background: var(--surface-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.trust-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.trust-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-family: var(--heading-font);
    line-height: 1;
}

.trust-stat .stat-label {
    font-size: 15px;
    color: var(--default-color);
    font-weight: 500;
    font-family: var(--default-font);
}

/* 30-Day Guarantee Section */
.guarantee {
    padding: 70px 0;
    background-color: var(--background-color);
}

.guarantee-content h2 {
    font-size: calc(22px + 1.5vw);
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-family: var(--heading-font);
    line-height: 1.3;
}

.guarantee-content .lead {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--default-font);
}

.guarantee-content p {
    font-size: 16px;
    color: var(--default-color);
    line-height: 1.7;
    margin-bottom: 30px;
    font-family: var(--default-font);
}

.guarantee-features {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.guarantee-features li {
    padding: 14px 0;
    font-size: 16px;
    color: var(--default-color);
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--default-font);
}

.guarantee-features li i {
    color: var(--accent-color);
    font-size: 22px;
    flex-shrink: 0;
}

.guarantee-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.guarantee-badge .badge-circle {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #ff8c42 50%) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--accent-color), transparent 70%);
    position: relative;
}

.guarantee-badge .badge-circle::before {
    content: '';
    position: absolute;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.guarantee-badge .badge-content {
    text-align: center;
    color: var(--contrast-color);
}

.guarantee-badge .badge-number {
    display: block;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--heading-font);
}

.guarantee-badge .badge-text {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 12px;
    line-height: 1.4;
}

/* Free Features Section */
.free-features {
    padding: 70px 0;
    background-color: #f7f7f7;
}

.free-features .section-title h2 {
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 500;
    padding: 8px 20px;
    margin: 0 0 10px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);
}

.free-features .section-title p {
    color: var(--heading-color);
    margin: 10px 0 50px 0;
    font-size: calc(16px + 1vw);
    font-weight: 600;
    font-family: var(--heading-font);
}

.feature-box {
    padding: 35px 30px;
    background: var(--surface-color);
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.feature-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.feature-box .feature-icon i {
    font-size: 32px;
    color: var(--accent-color);
}

.feature-box h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.feature-box p {
    font-size: 15px;
    color: var(--default-color);
    line-height: 1.7;
    margin: 0;
    font-family: var(--default-font);
}

/* Faster & Safer Section */
.faster-safer {
    padding: 70px 0;
    background-color: var(--background-color);
}

.faster-safer .section-title h2 {
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 500;
    padding: 8px 20px;
    margin: 0 0 10px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);
}

.faster-safer .section-title p {
    color: var(--heading-color);
    margin: 10px 0 50px 0;
    font-size: calc(16px + 1vw);
    font-weight: 600;
    font-family: var(--heading-font);
}

.performance-card {
    padding: 40px 35px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.performance-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
    transform: translateY(-5px);
}

.performance-card .card-icon {
    width: 80px;
    height: 80px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.performance-card:hover .card-icon {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.performance-card .card-icon i {
    font-size: 38px;
    color: var(--accent-color);
}

.performance-card h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 16px;
    font-family: var(--heading-font);
}

.performance-card p {
    font-size: 15px;
    color: var(--default-color);
    line-height: 1.7;
    margin: 0;
    font-family: var(--default-font);
}

/* Trustpilot Reviews Section */
.reviews {
    padding: 70px 0;
    background-color: #f7f7f7;
}

.reviews .section-title h2 {
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 500;
    padding: 8px 20px;
    margin: 0 0 10px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);
}

.reviews .section-title p {
    color: var(--heading-color);
    margin: 10px 0 40px 0;
    font-size: calc(16px + 1vw);
    font-weight: 600;
    font-family: var(--heading-font);
}

.rating-display {
    padding: 35px 45px;
    background: var(--surface-color);
    border-radius: 10px;
    display: inline-block;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rating-stars i {
    color: #ffc107;
    font-size: 26px;
    margin: 0 3px;
}

.rating-score {
    font-size: 38px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 18px;
    font-family: var(--heading-font);
}

.rating-text {
    font-size: 16px;
    color: var(--default-color);
    font-family: var(--default-font);
}

.review-card {
    padding: 35px;
    background: var(--surface-color);
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.review-card .review-stars {
    margin-bottom: 18px;
}

.review-card .review-stars i {
    color: #ffc107;
    font-size: 18px;
}

.review-card .review-text {
    font-size: 15px;
    color: var(--default-color);
    line-height: 1.7;
    margin-bottom: 22px;
    font-style: italic;
    font-family: var(--default-font);
}

.review-card .review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-card .review-author strong {
    font-size: 16px;
    color: var(--heading-color);
    font-weight: 600;
    font-family: var(--default-font);
}

.review-card .review-author span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-family: var(--default-font);
}

/* Compare Plans Section */
.compare-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

.compare-section h2 {
    font-size: calc(22px + 1.5vw);
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 16px;
    font-family: var(--heading-font);
}

.compare-section p {
    font-size: 17px;
    color: var(--default-color);
    margin-bottom: 30px;
    font-family: var(--default-font);
}

/* Mobile Responsive for Phase 3 Sections */
@media (max-width: 768px) {
    .domain-search,
    .trusted-by,
    .guarantee,
    .free-features,
    .faster-safer,
    .reviews,
    .compare-section {
        padding: 10px 0;
    }
    
    .domain-search .section-title p,
    .trusted-by .section-title p,
    .guarantee-content h2,
    .free-features .section-title p,
    .faster-safer .section-title p,
    .reviews .section-title p,
    .compare-section h2 {
        font-size: calc(18px + 1vw);
    }
    
    .domain-search-form .search-wrapper {
        flex-direction: column;
    }
    
    .domain-search-form .btn {
        width: 100%;
    }
    
    .guarantee-badge .badge-circle {
        width: 200px;
        height: 200px;
        margin-top: 40px;
    }
    
    .guarantee-badge .badge-circle::before {
        width: 220px;
        height: 220px;
    }
    
    .guarantee-badge .badge-number {
        font-size: 52px;
    }
    
    .guarantee-badge .badge-text {
        font-size: 13px;
    }
    
    .trust-stat {
        margin-bottom: 20px;
    }
    
    .trust-stat .stat-number {
        font-size: 2.5rem;
    }
    
    .rating-display {
        padding: 25px 30px;
    }
    
    .rating-score {
        font-size: 30px;
        margin: 0 12px;
    }
    
    .rating-stars i {
        font-size: 22px;
    }
    
    .feature-box,
    .performance-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .rating-display {
        padding: 20px;
    }
    
    .rating-text {
        font-size: 14px;
        display: block;
        margin-top: 10px;
    }
    
    .guarantee-badge .badge-circle {
        width: 180px;
        height: 180px;
    }
    
    .guarantee-badge .badge-number {
        font-size: 46px;
    }
}


/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top,
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-top .col-lg-3,
    .footer-bottom .col-lg-3 {
        margin-bottom: 20px;
    }
}

/* ================================
   Bootstrap Icons Integration
   ================================ */

.bi {
    display: inline-block;
    vertical-align: middle;
}

/* ================================
   Accessibility Improvements
   ================================ */

.dropdown-link:focus,
.top-nav-links a:focus {
    outline: 2px solid #fd5d07;
    outline-offset: 2px;
}

/* ================================
   Print Styles
   ================================ */

@media print {
    .top-nav,
    .client-dropdown,
    .dropdown-menu {
        display: none !important;
    }
}
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #fd5d07;
    padding-left: 5px;
}

.footer-bottom {
    padding: 30px 0 10px;
    padding: 30px 0 10px 0px;
}

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

.payment-methods i {
    font-size: 24px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: #fd5d07;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-top {
        padding: 30px 0 10px 5px;
    }
}




    
    @media (min-width: 576px) {
      .container { max-width: 540px; }
    }
    
    @media (min-width: 768px) {
      .container { max-width: 720px; }
    }
    
    @media (min-width: 992px) {
      .container { max-width: 960px; }
    }
    
    @media (min-width: 1200px) {
      .container { max-width: 1320px; }
    }
    
    .row {
      /* display: flex; */
      /* flex-wrap: wrap; */
      /* margin-right: -15px; */
      /* margin-left: -15px; */
    }
    
    .justify-content-center {
      justify-content: center !important;
    }
    
    .col-lg-10 {
      flex: 0 0 auto;
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
    }
    
    @media (min-width: 992px) {
      .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
      }
    }
    
    .text-center {
      text-align: center !important;
    }
    
    /* Domain Search Section - World-Class Design */
    .domain-search {
      padding: 130px 0 0px;
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
      position: relative;
      overflow: hidden;
      background: #fff;
      background: radial-gradient(1200px 600px at 20% 0%, rgba(253, 93, 7, .16), transparent 60%), radial-gradient(900px 500px at 90% 40%, rgb(207 205 204 / 5%), transparent 95%);
    }

    .domain-search::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%);
      border-radius: 50%;
      transform: translate(40%, -40%);
      pointer-events: none;
    }

    .domain-search .section-title h2 {
      font-size: 13px;
      letter-spacing: 1px;
      font-weight: 600;
      padding: 8px 24px;
      margin: 0 0 16px;
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
      color: var(--accent-color);
      display: inline-block;
      text-transform: uppercase;
      border-radius: 50px;
      font-family: var(--default-font);
    }

    .domain-search .section-title div {
      color: var(--heading-color);
      margin: 0 0 10px 0;
      font-size: 30px;
      font-weight: 700;
      font-family: var(--heading-font);
      line-height: 1.2;
    }
    
    .description-title {
      color: var(--accent-color);
    }

    /* Search Form - Premium Style */
    .domain-search-form {
      margin-top: 0;
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .search-input-group {
      display: flex;
      background: var(--surface-color);
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      padding: 0px;
      border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
      transition: all 0.3s ease;
    }

    .search-input-group:focus-within {
      border-color: var(--accent-color);
      box-shadow: 0 20px 60px rgba(253, 93, 7, 0.15);
    }

    .input-with-icon {
      flex: 1;
      position: relative;
      display: flex;
      align-items: center;
    }

    .www-prefix {
      position: absolute;
      left: 52px;
      font-size: 17px;
      font-weight: 600;
      color: var(--default-color);
      font-family: var(--default-font);
      pointer-events: none;
      z-index: 1;
    }

    .input-with-icon .form-control-lg {
      width: 100%;
      height: 54px;
      border: none;
      padding: 0 170px 0 99px;
      font-size: 17px;
      font-family: var(--default-font);
      background: transparent;
      color: var(--default-color);
      font-weight: 600;
    }

    .input-with-icon .form-control-lg:focus {
      outline: none;
    }

    .input-with-icon .form-control-lg::placeholder {
      color: color-mix(in srgb, var(--default-color), transparent 50%);
    }

    .btn-search {
      height: 48px;
      padding: 0 48px;
      background: var(--accent-color);
      color: var(--contrast-color);
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      font-family: var(--default-font);
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin: 4px;
    }

    .btn-search:hover {
      background: color-mix(in srgb, var(--accent-color), #000 10%);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(253, 93, 7, 0.3);
    }

    /* Transfer Link */
    .transfer-link-wrapper {
      text-align: center;
      margin: 10px 0 20px;
      font-size: 15px;
    }

    .transfer-text {
      color: var(--default-color);
      margin-right: 8px;
      font-family: var(--default-font);
    }

    .transfer-link {
      color: var(--accent-color);
      font-weight: 600;
      text-decoration: none;
      font-family: var(--default-font);
      transition: all 0.2s ease;
    }

    .transfer-link:hover {
      color: color-mix(in srgb, var(--accent-color), #000 15%);
      text-decoration: underline;
    }

    /* TLD Pricing Cards - Premium Grid */
    .tld-pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 0;
    }

    .tld-card {
      background: var(--surface-color);
      border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
      border-radius: 16px;
      padding: 0px 10px 10px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .tld-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff8c00 50%));
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .tld-card:hover::before {
      transform: scaleX(1);
    }

    .tld-card:hover {
      transform: translateY(-8px);
      border-color: var(--accent-color);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .tld-extension {
      font-size: 25px;
      font-weight: 800;
      color: var(--heading-color);
      margin: 0px 0 1px;
      font-family: var(--heading-font);
      letter-spacing: -0.5px;
    }

    .tld-pricing {
      margin-bottom: 10px;
    }

    .price-sale {
      font-size: 22px;
      font-weight: 800;
      color: var(--accent-color);
      font-family: var(--heading-font);
      line-height: 1;
      margin-bottom: 6px;
    }

    .price-sale span {
  
	  
	      font-size: 15px;
    font-weight: 600;
    color: #fd5d07;
    margin-left: 2px;
	
	
    }

    .price-regular {
      font-size: 15px;
      color: color-mix(in srgb, var(--default-color), transparent 40%);
      text-decoration: line-through;
      font-weight: 500;
    }

    .btn-register {
      display: block;
      width: 100%;
      padding: 7px 20px;
      background: #fff;
      color: #000;
      border: 1px solid #fd5d07;
      border-radius: 5px;
      font-weight: 700;
      font-size: 12px;
      text-decoration: none;
      font-family: var(--default-font);
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .btn-register:hover {
      background: var(--accent-color);
      color: var(--contrast-color);
      border-color: var(--accent-color);
      transform: translateY(-2px);
    }

    /* Tablet Responsive */
    @media (max-width: 991px) and (min-width: 769px) {
      .domain-search {
        padding: 80px 0 60px;
      }
      
      .domain-search .section-title div {
        font-size: 32px;
      }
      
      .search-input-group {
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
      }
      
      .input-with-icon .form-control-lg {
        height: 60px;
        font-size: 18px;
        padding: 0 160px 0 98px;
      }
      
      .www-prefix {
        font-size: 18px;
      }
      
      .btn-search {
        height: 54px;
        padding: 0 36px;
        font-size: 15px;
      }
      
      .tld-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
      .domain-search {
        padding: 50px 0 40px;
      }
      
      .domain-search .section-title h2 {
        font-size: 12px;
        padding: 6px 20px;
        margin-bottom: 12px;
      }
      
      .domain-search .section-title div {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.3;
      }
      
      .search-input-group {
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
      }
      
      .input-with-icon {
        width: 100%;
      }
      
      .input-with-icon .form-control-lg {
        /* height: 54px; */
        border: none;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
        padding: 0 20px 0 63px;
        font-size: 16px;
        border-radius: 12px 12px 0 0;
      }
      
      .www-prefix {
        left: 20px;
        font-size: 16px;
      }
      
      .btn-search {
        height: 58px;
        width: 100%;
        border-radius: 0 0 12px 12px;
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 1px;
      }
      
      .btn-search:hover {
        transform: none;
      }
      
      .transfer-link-wrapper {
        margin: 16px 0 24px;
        font-size: 14px;
      }
      
      .tld-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      
      .tld-card {
        padding: 16px 12px 12px;
        border-radius: 12px;
      }
      
      .tld-extension {
        font-size: 24px;
        margin: 8px 0 6px;
      }
      
      .price-sale {
        font-size: 20px;
        margin-bottom: 4px;
        color: #fd5d07;
      }
      
      .price-sale span {
        font-size: 12px;
      }
      
      .price-regular {
        font-size: 13px;
        margin-bottom: 8px;
      }
      
      .btn-register {
        padding: 10px 16px;
        font-size: 11px;
        letter-spacing: 0.8px;
      }
    }
    
    /* Extra Small Mobile */
    @media (max-width: 480px) {
      .domain-search {
        padding: 40px 0 30px;
      }
      
      .domain-search .section-title div {
        font-size: 22px;
      }
      
      .input-with-icon .form-control-lg {
        height: 60px;
        padding-left: 68px;
        font-size: 15px;
      }
      
      .btn-search {
        height: 56px;
        font-size: 14px;
      }
      
      .tld-pricing-grid {
        gap: 10px;
      }
      
      .tld-card {
        padding: 14px 10px 10px;
      }
      
      .tld-extension {
        font-size: 22px;
      }
      
      .price-sale {
        font-size: 18px;
        color: #fd5d07;
      }
      
      .btn-register {
        padding: 9px 12px;
        font-size: 10px;
      }
    }