:root {
    --primary: #012e57;
    --primary-dark: #014a7b;
    --accent: #ff3366;
    --accent-hover: #ff5577;
    --text-dark: #333333;
    --text-light: #555555;
    --background-light: #f7f9fc;
    --border-color: #e0e6ed;
    --success: #2e7d32;
    --error: #c62828;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Contact Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

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

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item .icon {
    font-size: 0.8rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.top-bar-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-brand {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 0.5rem;
}

.currency-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-selector:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.currency-selector option {
    background: var(--primary);
    color: var(--white);
}

.client-area-link {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.client-area-link:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 51, 102, 0.3);
}

.top-bar-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.top-bar-links a:hover {
    color: var(--accent);
}

/* Header Styles */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
}

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

/* Fallback text logo styles (if image fails to load) */
.logo h1 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.logo a:hover h1 {
    color: var(--accent);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* ============================================
   ENHANCED PRODUCT SLIDER STYLES
   ============================================ */
.product-slider {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.slide-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    padding: 3rem;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(255, 51, 102, 0.3);
    }

    50% {
        box-shadow: 0 4px 30px rgba(255, 51, 102, 0.5);
    }
}

.slide-text {
    position: relative;
    z-index: 2;
}

.slide-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.slide-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.slide-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.slide-pricing {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 1.5rem 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.slide-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

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

    100% {
        left: 100%;
    }
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
}

.price-period {
    font-size: 1rem;
    opacity: 0.9;
}

.price-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slide-visual {
    text-align: center;
    position: relative;
    z-index: 2;
}

.slide-visual::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(1, 46, 87, 0.05), rgba(255, 51, 102, 0.05));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.slide-image {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.nav-btn {
    background: var(--white);
    border: 2px solid var(--border-color);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    width: 40px;
    border-radius: 6px;
}

/* ============================================
   DROPDOWN MENU STYLES
   ============================================ */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
}

.main-nav>ul>li>a {
    padding: 0.5rem 0;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-toggle .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 0.3rem;
}

.dropdown-toggle .arrow::after {
    content: '▼';
    display: inline-block;
    font-size: 0.7rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    margin-left: 0.3rem;
    vertical-align: middle;
    line-height: 1;
}

.dropdown:hover .dropdown-toggle .arrow::after {
    transform: rotate(180deg);
    color: var(--accent);
}

.dropdown:hover .dropdown-toggle .arrow {
    transform: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 320px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
    max-height: 500px;
    overflow-y: auto;
}

/* Mega Menu Styles */
.dropdown-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 600px;
    max-width: 900px;
    width: auto;
    padding: 1.5rem;
}

.dropdown:hover .dropdown-menu.mega-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: var(--background-light);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    flex-direction: column;
    padding: 0.875rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.dropdown-item:hover {
    background: var(--background-light);
    border-left-color: var(--accent);
    padding-left: 1.5rem;
}

.dropdown-item .item-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.dropdown-item:hover .item-title {
    color: var(--accent);
}

.dropdown-item .item-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.3;
}

.dropdown-item .badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-left: auto;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
}

.badge-orange {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: var(--white);
}

.badge-red {
    background: linear-gradient(135deg, #f44336, #e91e63);
    color: var(--white);
}

.badge-blue {
    background: linear-gradient(135deg, #2196f3, #03a9f4);
    color: var(--white);
}

.badge-green {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: var(--white);
}

.badge-grey {
    background: linear-gradient(135deg, #9e9e9e, #757575);
    color: var(--white);
}

.main-nav a.active {
    color: var(--accent);
}

.main-nav>ul>li>a:hover,
.dropdown-toggle:hover {
    color: var(--accent);
}

/* Navigation uppercase styling for main categories */
.main-nav>ul>li>.dropdown-toggle {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Responsive dropdown positioning */
.dropdown {
    position: relative;
}

/* ============================================
   MOBILE NAVIGATION SYSTEM
   ============================================ */

/* Mobile Menu Toggle Button - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Mobile Navigation Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list>li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-list>li>a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-list>li>a:hover {
    background: var(--background-light);
    color: var(--accent);
    padding-left: 2rem;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.mobile-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.mobile-dropdown.active .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--background-light);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem 0.875rem 2.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    background: rgba(1, 46, 87, 0.05);
    color: var(--accent);
    padding-left: 3rem;
}

.mobile-order-btn {
    background: var(--primary) !important;
    color: var(--white) !important;
    text-align: center;
    font-weight: 600;
    margin: 1rem;
    border-radius: 6px;
}

.mobile-order-btn:hover {
    background: var(--accent) !important;
    padding-left: 1rem !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .dropdown-menu.mega-menu {
        min-width: 100%;
        max-width: 100%;
        left: 0;
        transform: translateY(-10px);
    }

    .dropdown:hover .dropdown-menu.mega-menu {
        transform: translateY(0);
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
    }

    .main-nav {
        gap: 1.5rem;
    }

    .main-nav ul {
        gap: 1.5rem;
    }
}

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

/* Mobile: Show hamburger, hide desktop nav */
@media (max-width: 768px) {

    /* Hide desktop navigation */
    .main-nav {
        display: none !important;
    }

    /* Show mobile menu toggle (hamburger) */
    .mobile-menu-toggle {
        display: flex !important;
    }

    /* Show overlay when active */
    .mobile-menu-overlay.active {
        display: block !important;
    }
}

/* Desktop: Hide all mobile elements */
@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
        right: -100% !important;
    }

    .mobile-menu-overlay {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
}

@media (max-width: 768px) {

    /* Adjust header layout */
    .header-content {
        padding: 0.75rem 0;
    }

    .logo-image {
        height: 40px;
    }

    .header-actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    /* Top bar responsive */
    .top-bar-content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .contact-info {
        flex-wrap: wrap;
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    .top-bar-brand {
        display: none;
    }

    .currency-selector {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .client-area-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .top-bar-links {
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .header-actions .btn {
        display: none;
    }

    .mobile-nav {
        width: 100%;
        max-width: 100%;
    }

    .logo-image {
        height: 35px;
    }

    .contact-info {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .contact-item span,
    .contact-item a {
        font-size: 0.75rem;
    }
}

/* ============================================
   HERO SECTION WITH DOMAIN SEARCH
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    margin-top: 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    height: 2rem;
    background: linear-gradient(to bottom, transparent, rgba(1, 46, 87, 0.1));
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============================================
   ENHANCED DOMAIN SEARCH
   ============================================ */
.domain-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.domain-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -100px;
}

.domain-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    right: -50px;
}

.domain-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.domain-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.domain-search-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.search-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(1, 46, 87, 0.1);
}

.search-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    white-space: nowrap;
    border-radius: 12px;
}

.tld-selector {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.tld-option {
    padding: 0.6rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.tld-option:hover {
    border-color: var(--accent);
    background: rgba(255, 51, 102, 0.05);
    transform: translateY(-2px);
}

.tld-option.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.tld-name {
    font-size: 1.1rem;
}

.tld-price {
    font-size: 0.85rem;
    opacity: 0.8;
}

.search-results {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    display: none;
    animation: slideDown 0.3s ease;
}

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

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

.search-results.show {
    display: block;
}

.result-success {
    background: rgba(46, 125, 50, 0.1);
    border: 2px solid var(--success);
    color: var(--success);
}

.result-error {
    background: rgba(198, 40, 40, 0.1);
    border: 2px solid #c62828;
    color: #c62828;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.result-icon {
    font-size: 2rem;
}

.result-text h3 {
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
}

.result-text p {
    margin: 0;
    font-size: 1rem;
}

/* Domain Search (Old Style - Keep for compatibility) */
.domain-search {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-hover);
    max-width: 600px;
    margin: 0 auto;
}

.tld-select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
}

/* New Domain Search Styles */
.tld-section {
    margin: 1.5rem 0;
}

.tld-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Store Header */
.store-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.store-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.store-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Store Layout */
.store-layout {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    align-items: flex-start;
}

.store-sidebar {
    flex: 0 0 280px;
    position: sticky;
    top: 100px;
}

.products-main {
    flex: 1;
}

.sidebar-section {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.sidebar-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-list a:hover {
    background: var(--accent);
    color: var(--white);
}

.category-list a.active {
    background: var(--primary);
    color: var(--white);
}

/* Domain Tabs */
.domain-tabs {
    display: flex;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.domain-tab {
    flex: 1;
    padding: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.domain-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.domain-tab:hover {
    color: var(--accent);
}

.domain-section {
    margin-top: 1rem;
}

.domain-input-group {
    display: flex;
    margin-bottom: 1rem;
}

.domain-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px 0 0 6px;
    font-size: 0.9rem;
}

.domain-select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-left: none;
    border-radius: 0 6px 6px 0;
    background: var(--white);
    font-size: 0.9rem;
    min-width: 80px;
}

.domain-check-btn {
    width: 100%;
    margin-bottom: 1rem;
}

.domain-result {
    background: var(--background-light);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.domain-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.domain-name {
    font-weight: 600;
    color: var(--primary);
}

.domain-price {
    font-weight: 700;
    color: var(--accent);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.hosting-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hosting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.hosting-card.hidden {
    display: none;
}

.hosting-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.hosting-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.hosting-card .product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.product-features {
    flex: 1;
    margin: 1rem 0;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-price .currency {
    font-size: 1rem;
    vertical-align: top;
}

.product-price .period {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.product-price-highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hosting-card:hover .product-price-highlight::before {
    left: 100%;
}

.product-actions {
    margin-top: auto;
}

.order-btn {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
}

.order-btn:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

/* Footer */
.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.contact-details p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent);
}

.footer-tagline {
    font-weight: 600;
    color: var(--white) !important;
    margin-top: 1rem;
    font-size: 1rem !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Marketing Sections */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    transform: scale(1.1);
}

.feature-image {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.feature-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--accent);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: var(--white);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.services-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-list {
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-details h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.service-details p {
    color: var(--text-light);
    margin: 0;
}

.services-cta {
    margin-top: 2rem;
}

.services-cta .btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.services-visual {
    text-align: center;
}

.services-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.trust-visual {
    text-align: center;
}

.trust-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.trust-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-feature {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
}

.trust-icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Hosting Products Section */
.hosting-products-section {
    padding: 4rem 0;
    background: var(--white);
}

.hosting-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-showcase-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.product-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.product-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.product-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.product-showcase-card:hover .product-header h3 {
    color: var(--accent);
}

.product-showcase-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 1rem 2rem;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(1, 46, 87, 0.25);
    position: relative;
    margin-bottom: 1rem;
}

.product-showcase-price::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-showcase-card:hover .product-showcase-price::before {
    opacity: 1;
}

.product-showcase-price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.product-showcase-features {
    flex: 1;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.product-showcase-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-showcase-features li {
    padding: 0.6rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.5;
    font-size: 1rem;
}

.product-showcase-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
}

.product-showcase-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-block {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
}

.product-showcase-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    font-size: 1.05rem;
}

.product-showcase-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
}

.product-showcase-actions .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.product-showcase-actions .btn-outline:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Image styling */
.services-image,
.trust-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

/* Universal hover effects for clickable elements */
a:not(.btn):hover {
    color: var(--accent) !important;
    transition: color 0.3s ease;
}

button:not(.btn):hover {
    background-color: var(--accent) !important;
    color: var(--white) !important;
    transition: all 0.3s ease;
}

/* Ensure all buttons have consistent red hover */
.btn:not(.btn-accent):not(.btn-outline):hover {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
}

/* Close modal button hover */
.close-modal:hover {
    color: var(--accent) !important;
}

/* Domain tab active state */
.domain-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.contact-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-header-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Methods */
.contact-methods {
    padding: 3rem 0;
    background: var(--background-light);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.method-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.method-card:hover .method-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    transform: scale(1.1);
}

.icon-placeholder {
    font-size: 2rem;
    filter: grayscale(1) brightness(0) invert(1);
}

.method-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.method-card:hover h3 {
    color: var(--accent);
}

.method-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-details strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.method-details span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Main Section */
.contact-main {
    padding: 4rem 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

/* Contact Form */
.contact-form-section {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(1, 46, 87, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
    accent-color: var(--primary);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.form-result {
    margin-top: 1rem;
}

.alert {
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid;
}

.alert-success {
    background: rgba(46, 125, 50, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(198, 40, 40, 0.1);
    border-color: var(--error);
    color: var(--error);
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.info-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-content strong {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.detail-content span {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-link:hover {
    background: var(--white);
    border-color: var(--accent);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.link-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.link-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.link-content strong {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.link-content span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-item.active .faq-question {
    background: var(--primary);
    color: var(--white);
}

.faq-question h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
    color: var(--white);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    transition: all 0.3s ease;
    width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Chat Widget Positioning */
.elfsight-app-9135b7a5-3dc1-4384-adca-f15f83eac95e {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    right: auto !important;
    z-index: 99999 !important;
}

#tawkchat-container,
#tawkchat-minified-wrapper {
    right: 20px !important;
    bottom: 20px !important;
    left: auto !important;
    z-index: 99998 !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .dropdown-menu {
        min-width: 280px;
    }
}

@media (max-width: 992px) {
    .store-layout {
        flex-direction: column;
    }

    .store-sidebar {
        position: static;
        flex: none;
        width: 100%;
    }

    .sidebar-section {
        margin-bottom: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* Slider responsive */
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2.5rem;
    }

    .slide-text h2 {
        font-size: 2.5rem;
    }

    .slide-actions {
        justify-content: center;
    }

    .price-container {
        justify-content: center;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 600px;
    }

    .dropdown-toggle {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .dropdown-item {
        padding: 0.75rem 1rem;
    }

    .dropdown-item .badge {
        position: static;
        transform: none;
        margin-left: 0.5rem;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-image {
        height: 40px;
        max-width: 150px;
    }

    .footer-logo-image {
        height: 50px;
        max-width: 200px;
    }

    .main-nav ul {
        gap: 1rem;
    }

    .main-nav {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .store-header h1 {
        font-size: 2rem;
    }

    /* Contact page responsive */
    .contact-header-content h1 {
        font-size: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
    }

    /* Hosting products responsive */
    .hosting-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-showcase-card {
        padding: 1.5rem;
    }

    .product-showcase-price {
        font-size: 1.6rem;
        padding: 0.75rem 1.5rem;
    }

    .popular-badge {
        right: 1rem;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .search-form {
        flex-direction: column;
    }

    .modal-actions {
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .domain-input-group {
        flex-direction: column;
    }

    .domain-input,
    .domain-select {
        border-radius: 6px;
        border: 1px solid var(--border-color);
    }

    .domain-select {
        margin-top: 0.5rem;
    }

    .domain-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Marketing sections responsive */
    .section-header h2 {
        font-size: 2rem;
    }

    .services-content,
    .trust-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-content {
        grid-template-areas:
            "image"
            "text";
    }

    .trust-visual {
        grid-area: image;
    }

    .trust-text {
        grid-area: text;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-text h2,
    .trust-text h2 {
        font-size: 1.8rem;
    }

    /* Enhanced Slider responsive */
    .product-slider {
        padding: 2rem 0;
    }

    .slide-content {
        padding: 2rem;
        min-height: auto;
    }

    .slide-text h2 {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-features li {
        font-size: 0.95rem;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .slide-pricing {
        padding: 1rem 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .price-currency {
        font-size: 1rem;
    }

    .slide-actions {
        flex-direction: column;
        width: 100%;
    }

    .slide-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .slider-nav {
        gap: 1rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Domain search responsive */
    .domain-hero h1 {
        font-size: 2rem;
    }

    .domain-hero p {
        font-size: 1rem;
    }

    .domain-search-wrapper {
        padding: 1.5rem;
    }

    .search-btn {
        width: 100%;
        padding: 1rem;
    }

    .tld-selector {
        gap: 0.5rem;
        padding-top: 1rem;
    }

    .tld-option {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .tld-name {
        font-size: 1rem;
    }

    .tld-price {
        font-size: 0.75rem;
    }

    .search-results {
        padding: 1rem;
    }

    .result-icon {
        font-size: 1.5rem;
    }

    .result-text h3 {
        font-size: 1.1rem;
    }

    .hero {
        margin-top: 1rem;
    }

    .hero::before {
        top: -1rem;
        height: 1rem;
    }
}

/* Spinner animation for loading states */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

/* Search mode options */
.search-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.search-mode {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.search-mode:hover {
    color: var(--primary);
}

.search-mode input[type="radio"] {
    cursor: pointer;
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.search-mode input[type="radio"]:checked+span {
    color: var(--primary);
    font-weight: 600;
}

/* TLD Section Styles */
.tld-section {
    margin: 1.5rem 0;
}

.tld-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

/* Multi-domain results */
.multi-domain-results {
    padding: 1rem 0;
}

.multi-domain-results h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.domain-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.domain-result-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.domain-result-card.available {
    border-color: var(--success);
    background: rgba(46, 125, 50, 0.05);
}

.domain-result-card.available:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.domain-result-card.unavailable {
    border-color: var(--border-color);
    background: var(--background-light);
    opacity: 0.7;
}

.domain-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    word-break: break-all;
}

.domain-result-card.unavailable .domain-name {
    color: var(--text-light);
}

.domain-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
}

.domain-status {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.unavailable-grid {
    opacity: 0.6;
}

.unavailable-grid .domain-result-card {
    padding: 0.75rem;
}

/* Responsive adjustments for multi-domain results */
@media (max-width: 768px) {
    .search-options {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .domain-results-grid {
        grid-template-columns: 1fr;
    }

    .tld-selector {
        gap: 0.5rem;
    }

    .tld-option {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .tld-name {
        font-size: 1rem;
    }

    .tld-price {
        font-size: 0.75rem;
    }
}

/* =====================================================
   NAMECHEAP-STYLE DOMAIN SEARCH RESULTS
   ===================================================== */

/* Quick TLD prices below search bar */
.quick-tld-prices {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.quick-tld {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.quick-tld:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.quick-tld-loading {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Main search results container */
.nc-search-results {
    display: none;
    background: var(--white);
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.nc-search-results.show {
    display: block;
}

/* Loading state */
.nc-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--text-dark);
}

.nc-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error message */
.nc-error-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(220, 53, 69, 0.1);
    color: var(--error);
    border-left: 4px solid var(--error);
}

.nc-error-icon {
    font-size: 1.5rem;
}

/* Main result (top featured result like Namecheap) */
.nc-main-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(46, 125, 50, 0.1) 100%);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.nc-main-result.nc-taken {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, rgba(220, 53, 69, 0.1) 100%);
}

.nc-main-domain {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.nc-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
}

.nc-x-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--error);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
}

.nc-domain-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nc-available-badge {
    background: var(--success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nc-taken-badge {
    background: var(--error);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nc-main-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.nc-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nc-period {
    font-size: 1rem;
    color: var(--text-light);
}

.nc-main-message {
    color: var(--text-light);
    font-size: 0.95rem;
}

.nc-add-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nc-add-cart-btn:hover {
    background: var(--accent-dark, #e62e5c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
}

/* Section headers */
.nc-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.nc-section-header.nc-expandable {
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.nc-section-header.nc-expandable:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nc-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nc-unavailable-title {
    color: var(--text-light);
}

.nc-expand-icon {
    font-size: 0.8rem;
    color: var(--text-light);
    transition: transform 0.2s ease;
}

/* Results list */
.nc-results-list {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nc-results-list.nc-collapsed {
    max-height: 0;
}

/* Individual domain row */
.nc-domain-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nc-domain-row:hover {
    background: rgba(0, 0, 0, 0.02);
}

.nc-domain-row:last-child {
    border-bottom: none;
}

.nc-row-domain {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 200px;
}

.nc-tld-icon {
    font-size: 1.25rem;
}

.nc-icon-dim {
    opacity: 0.4;
}

.nc-row-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.nc-name-dim {
    color: var(--text-light);
    text-decoration: line-through;
}

.nc-row-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    min-width: 120px;
}

.nc-price-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nc-price-period {
    font-size: 0.85rem;
    color: var(--text-light);
}

.nc-row-status {
    min-width: 120px;
}

.nc-taken-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.nc-row-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nc-row-cart-btn:hover {
    background: var(--primary-dark, #1a3a5c);
    transform: translateY(-1px);
}

/* Unavailable row styling */
.nc-row-unavailable {
    background: rgba(0, 0, 0, 0.02);
    opacity: 0.7;
}

/* Sections */
.nc-suggested-section,
.nc-other-section,
.nc-unavailable-section {
    border-top: 1px solid var(--border-color);
}

/* Responsive adjustments for Namecheap-style results */
@media (max-width: 768px) {
    .quick-tld-prices {
        gap: 0.75rem;
    }

    .quick-tld {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }

    .nc-main-result {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
    }

    .nc-domain-name {
        font-size: 1.25rem;
    }

    .nc-price {
        font-size: 1.25rem;
    }

    .nc-add-cart-btn {
        width: 100%;
        justify-content: center;
    }

    .nc-section-header {
        padding: 0.75rem 1rem;
    }

    .nc-domain-row {
        padding: 0.75rem 1rem;
    }

    .nc-row-domain {
        min-width: 100%;
    }

    .nc-row-price {
        min-width: auto;
    }

    .nc-row-cart-btn {
        flex: 1;
        justify-content: center;
    }
}