:root {
    --primary: #77a50d;
    --primary-dark: #55790a;
    --secondary: #8cc314;
    --dark-bg: #1b262c;
    --light-bg: #f4f7f6;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #eeeeee;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --font-main: 'Open Sans', sans-serif;
    --font-cyber: 'Orbitron', sans-serif;
    /* Kept for small tech tags */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--white);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
}

/* Header & Utility Bar */
/* Exact Brand Replication */
.top-bar {
    background: #111;
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .contact-info {
    font-weight: 600;
}

.top-bar .user-links {
    display: flex;
    gap: 10px;
}

.btn-login {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-register {
    background: #fff;
    color: #000;
    padding: 6px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-register:hover {
    background: #f0f0f0;
}

header {
    background: var(--white);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link img {
    max-height: 80px;
    display: block;
    transition: all 0.3s;
}

.white-logo {
    filter: brightness(0) invert(1) !important;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 10px 5px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    color: #333;
    text-transform: uppercase;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.nav-item:hover {
    color: var(--primary);
}

.btn-special {
    background: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.85rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mega Menu (Restored & Centered) */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 900px;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--primary);
    padding: 2rem;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    z-index: 1001;
    border-radius: 0 0 8px 8px;
    text-align: left;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-item:hover .mega-menu {
    display: grid;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.menu-column h4 {
    color: var(--dark-bg);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 4px;
}

/* Mega Menu Background Variations */
.mega-menu.domains {
    background-image: url('../images/1domain.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.85);
}

.mega-menu.hosting {
    background-image: url('../images/Gemini_Generated_Image_5k6zhh5k6zhh5k6z.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.85);
}

.mega-menu.servers {
    background-image: url('../images/3server.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.85);
}

.mega-menu.email {
    background-image: url('../images/Gemini_Generated_Image_5422t65422t65422.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.85);
}

.mega-menu.security {
    background-image: url('../images/Gemini_Generated_Image_wvgwtlwvgwtlwvgw.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.85);
}

.mega-menu.webdesign {
    background-image: url('../images/Gemini_Generated_Image_pcy4jppcy4jppcy4.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.85);
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
    padding: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    border: 1px solid transparent;
}

.menu-link:hover {
    background: rgba(119, 165, 13, 0.2);
    /* Exactly 20% opacity meaningful background */
    border-color: rgba(119, 165, 13, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(119, 165, 13, 0.15);
}

.menu-link i {
    width: 30px;
    height: 30px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.menu-text span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 700;
}

.menu-text small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero & Domain Search */
.hero {
    position: relative;
    color: var(--white);
    padding: 60px 0;
    text-align: left;
    border-bottom: 5px solid var(--primary);
    overflow: hidden;
    background: #2d3436;
    /* Lighter background fallback */
}

/* Crossfade transition system */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    filter: brightness(1) contrast(1);
    z-index: 0;
    transition: opacity 2s ease-in-out, transform 15s ease-in-out;
    transform: scale(1);
}

.hero::after {
    z-index: 1;
    opacity: 0;
    transform: scale(1.05);
}

.hero.transitioning::before {
    opacity: 0;
    transform: scale(1.05);
}

.hero.transitioning::after {
    opacity: 1;
    transform: scale(1);
}

/* Random Hero Backgrounds */
.hero.bg-1::before,
.hero.bg-1::after {
    background-image: url('../images/hero_bg.png');
}

.hero.bg-2::before,
.hero.bg-2::after {
    background-image: url('../images/hero_bg_premium.png');
}

.hero.bg-3::before,
.hero.bg-3::after {
    background-image: url('../images/Gemini_Generated_Image_wvgwtlwvgwtlwvgw (1).png');
}

.hero.bg-4::before,
.hero.bg-4::after {
    background-image: url('../images/1domain.png');
}

.hero.bg-5::before,
.hero.bg-5::after {
    background-image: url('../images/3server.png');
}

.hero.bg-6::before,
.hero.bg-6::after {
    background-image: url('../images/Gemini_Generated_Image_5k6zhh5k6zhh5k6z.png');
}

.hero.bg-7::before,
.hero.bg-7::after {
    background-image: url('../images/Gemini_Generated_Image_5422t65422t65422.png');
}

.hero.bg-8::before,
.hero.bg-8::after {
    background-image: url('../images/Gemini_Generated_Image_pcy4jppcy4jppcy4.png');
}

.hero.bg-9::before,
.hero.bg-9::after {
    background-image: url('../images/Gemini_Generated_Image_wvgwtlwvgwtlwvgw.png');
}

@keyframes pulseBG {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero::before {
    animation: pulseBG 15s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(119, 165, 13, 0.15);
    /* Transparent green 15% as requested */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-flex {
    display: flex;
    justify-content: center;
    /* Center the domain search */
    align-items: center;
    gap: 8px;
    /* Reduced gap */
    padding: 20px 2rem !important;
    position: relative;
    z-index: 10;
}

.hero-right {
    max-width: 550px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(119, 165, 13, 0.2);
    position: relative;
    z-index: 10;
}

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

.hero h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Removed margin-bottom to avoid conflicts with flex centering */

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* AI Deployment simulation container */
.ai-search-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.search-group {
    display: flex;
    border: none;
    border-radius: 4px;
    overflow: hidden;
    background: transparent;
}

.search-group input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    outline: none;
    color: #333;
}

.btn-search {
    padding: 0 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-search:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 15px var(--primary);
    transform: translateY(-2px);
}

/* TLD Badges */
.tld-strip {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: center;
    gap: 0;
}

.tld-strip span {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 20px;
}

.tld-strip span:last-child {
    border-right: none;
}

.tld-strip span b {
    color: #fff;
    font-weight: 400;
}

/* Domain Result Enhanced Panel */
#domainResultPanel {
    background: rgba(119, 165, 13, 0.15) !important;
    border: 1px solid rgba(119, 165, 13, 0.3) !important;
    backdrop-filter: blur(15px);
    margin-top: 30px;
    max-width: 900px !important;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    color: #fff;
}

.main-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-unavailable {
    background: #e11d48;
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-available {
    background: #22c55e;
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-whois {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whois:hover {
    background: #fff;
    color: #000;
}

.suggestions-title {
    font-size: 0.75rem;
    color: var(--primary);
    margin: 25px 0 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.suggestion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-left {
    flex: 2;
    font-weight: 700;
}

.suggestion-badge {
    flex: 1;
    text-align: center;
}

.price-text {
    flex: 1.5;
    text-align: center;
    color: #ffbc00;
    font-weight: 700;
}

.btn-add-cart {
    flex: 1;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background: #8cc314;
}

.section {
    padding: 80px 0;
    background: #f4f9f1;
    /* Metrosoft Light Green Tint */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
    font-weight: 800;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(119, 165, 13, 0.2);
    border-color: var(--primary);
}

.discount-ribbon {
    position: absolute;
    top: 15px;
    left: -35px;
    background: #ef4444;
    color: #fff;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 800;
    transform: rotate(-45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Final 1:1 Pricing Cards */
.pricing-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: #77a50d;
    color: var(--white);
    padding: 40px 20px;
    position: relative;
}

.card-dark .card-header {
    background: #77a50d;
    /* Matching screenshot cards are uniform green */
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.card-price span {
    font-size: 1.2rem;
    font-weight: 400;
}

.renewal {
    font-size: 1rem;
    margin-bottom: 30px;
}

.btn-order {
    display: inline-block;
    background: var(--white);
    color: #333;
    text-decoration: none;
    padding: 10px 35px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.2s;
    border: none;
}

.btn-order:hover {
    transform: scale(1.05);
    background: #f8f8f8;
}

.card-features {
    padding: 0;
    list-style: none;
    text-align: center;
}

.card-features li {
    padding: 12px 20px;
    border-bottom: 1px solid #edf2f7;
    font-size: 0.88rem;
    color: #64748b;
}

.card-features li:last-child {
    border-bottom: none;
}

/* Support Grid (1:1 style) */
.support-section {
    padding: 80px 0;
    background: #fff;
}

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

.support-card {
    background: #fdfdfd;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: all 0.3s;
}

.support-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.support-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.support-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
    font-weight: 700;
}

.support-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 700;
}

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

.footer-col li {
    margin-bottom: 15px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary);
    margin-top: 4px;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #444;
    padding: 5px 12px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 0.8rem;
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 30px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #999;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .nav-container {
        padding: 15px 1rem;
    }
    
    .mega-menu {
        width: 800px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Top Bar */
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar .contact-info {
        font-size: 0.8rem;
    }
    
    .top-bar .user-links {
        display: flex;
        gap: 10px;
    }
    
    .btn-login, .btn-register {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    /* Navigation */
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav-item {
        text-align: center;
        padding: 12px 10px;
        font-size: 0.9rem;
        border-bottom: 1px solid #eee;
    }
    
    .btn-special {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    /* Mega Menu - Mobile */
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8f9fa;
        padding: 1rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-item:hover .mega-menu {
        display: grid;
        opacity: 1;
        transform: none;
    }
    
    .menu-column h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .menu-link {
        padding: 8px 0;
        font-size: 0.85rem;
    }
    
    .menu-text span {
        font-size: 0.85rem !important;
    }
    
    .menu-text small {
        font-size: 0.75rem !important;
    }
    
    /* Hero Section */
    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-left {
        display: none;
    }
    
    .hero-right {
        width: 100%;
        padding: 0 1rem;
    }
    
    /* Enhanced Mobile Domain Search */
    .search-group {
        flex-direction: column;
        gap: 15px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        padding: 8px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    #domainSearch {
        width: 100%;
        font-size: 1.1rem;
        padding: 18px 20px;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        background: #fff;
        color: #333;
        outline: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    #domainSearch:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(119, 165, 13, 0.1);
    }
    
    #domainSearch::placeholder {
        color: #94a3b8;
        font-weight: 400;
    }
    
    .btn-search {
        width: 100%;
        padding: 18px 30px;
        font-size: 1.1rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: var(--white);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        text-transform: uppercase;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(119, 165, 13, 0.3);
        letter-spacing: 0.5px;
    }
    
    .btn-search:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(119, 165, 13, 0.4);
    }
    
    .btn-search:active {
        transform: translateY(0);
    }
    
    /* Enhanced Mobile TLD Strip */
    .tld-strip {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 20px 15px;
        margin-top: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .tld-strip span {
        font-size: 0.85rem;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(119, 165, 13, 0.2);
        border-radius: 20px;
        color: var(--primary);
        font-weight: 600;
        transition: all 0.3s ease;
        cursor: pointer;
        display: inline-block;
    }
    
    .tld-strip span:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(119, 165, 13, 0.3);
    }
    
    /* Domain Results Panel */
    #domainResultPanel {
        margin: 20px 10px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .main-result-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .result-domain {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
        padding: 12px;
        background: #f8fafc;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
    }
    
    /* Support Section */
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-card {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .support-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col {
        margin-bottom: 20px;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
        max-width: 300px;
        margin: 0 auto 15px;
    }
    
    .lang-toggle {
        display: inline-flex;
        margin: 15px auto 0;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .container {
        padding: 0 15px;
    }
    
    .top-bar .contact-info {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .top-bar .user-links {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .btn-login, .btn-register {
        width: 100%;
        text-align: center;
    }
    
    .logo-link img {
        max-height: 60px;
    }
    
    .nav-item {
        font-size: 0.85rem;
        padding: 10px 5px;
    }
    
    /* Enhanced Extra Small Mobile Hero */
    .hero {
        min-height: 50vh;
        padding: 1.5rem 0;
    }
    
    .hero-right {
        padding: 0 0.5rem;
    }
    
    /* Extra Small Mobile Domain Search */
    .search-group {
        gap: 12px;
        padding: 6px;
        margin: 0 0.5rem;
    }
    
    #domainSearch {
        padding: 16px 18px;
        font-size: 1rem;
        border-radius: 6px;
    }
    
    .btn-search {
        padding: 16px 25px;
        font-size: 1rem;
        border-radius: 6px;
    }
    
    /* Extra Small Mobile TLD Strip */
    .tld-strip {
        padding: 15px 10px;
        gap: 6px;
        margin: 15px 0.5rem 0;
    }
    
    .tld-strip span {
        font-size: 0.75rem;
        padding: 6px 12px;
        border-radius: 15px;
    }
    
    /* Domain Results Panel */
    #domainResultPanel {
        margin: 15px 5px;
        padding: 15px;
    }
    
    .result-domain {
        font-size: 1rem;
        padding: 10px;
    }
    
    .support-card {
        padding: 1.5rem 0.75rem;
    }
    
    .support-card i {
        font-size: 2rem;
    }
    
    .support-card h4 {
        font-size: 1.1rem;
    }
    
    .support-card p {
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
    }
    
    .hero-flex {
        gap: 1rem;
    }
    
    .search-group {
        flex-direction: row;
        max-width: 500px;
        margin: 0 auto;
    }
    
    #domainSearch {
        flex: 1;
    }
    
    .btn-search {
        flex: 0 0 auto;
        width: auto;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-item:hover .mega-menu {
        display: none;
    }
    
    .nav-item:active .mega-menu,
    .nav-item:focus .mega-menu {
        display: grid;
        opacity: 1;
        transform: none;
    }
    
    .pricing-card:hover {
        transform: none;
    }
    
    .btn-special:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}