/* ============================================
   NOVA DOMAIN PAGE STYLES
   Modern Glassmorphism Design
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --domain-primary: #667eea;
    --domain-secondary: #764ba2;
    --domain-accent: #00d4ff;
    --domain-success: #10b981;
    --domain-warning: #f59e0b;
    --domain-danger: #ef4444;
    --domain-dark: #0f0f23;
    --domain-darker: #0a0a18;
}

/* ============================================
   HERO SECTION
   ============================================ */
.domain-hero-section {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0a0a1a 0%, #151535 40%, #1a1a40 70%, #0d0d25 100%);
    overflow: hidden;
    min-height: 500px;
}

.domain-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #0f0f23, transparent);
    pointer-events: none;
    z-index: 1;
}

.domain-hero-section .hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.domain-hero-section .floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: domainFloatOrb 10s ease-in-out infinite;
}

.domain-hero-section .orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -150px;
    right: 5%;
}

.domain-hero-section .orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00d4ff, #0077aa);
    bottom: -100px;
    left: 0%;
    animation-delay: 3s;
}

.domain-hero-section .orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #10b981, #047857);
    top: 40%;
    left: 45%;
    animation-delay: 5s;
}

@keyframes domainFloatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.08);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.domain-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.domain-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(102, 126, 234, 0.18);
    border: 1px solid rgba(102, 126, 234, 0.35);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
}

.domain-hero-badge svg {
    stroke: #00d4ff;
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.5));
}

.domain-hero-title {
    font-size: 54px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.15;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0ff 50%, #c0c0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.domain-hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 40px 0;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   DOMAIN SEARCH BOX
   ============================================ */
.domain-search-wrapper {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.domain-search-box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    background: rgba(25, 25, 55, 0.9) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 20px !important;
    padding: 8px !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(102, 126, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    width: 100%;
    box-sizing: border-box;
}

.domain-search-box:focus-within {
    border-color: rgba(102, 126, 234, 0.5) !important;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 15px 40px rgba(102, 126, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.domain-search-box .domain-search-input,
.domain-search-box input#domainInput {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    order: 1 !important;
    background: transparent !important;
    border: none !important;
    padding: 18px 24px !important;
    font-size: 18px !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    height: auto !important;
    line-height: normal !important;
}

.domain-search-box .domain-search-input::placeholder,
.domain-search-box input#domainInput::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.domain-search-box .domain-search-btn,
.domain-search-box button#checkButton {
    flex: 0 0 auto !important;
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 18px 36px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 14px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    white-space: nowrap !important;
    margin: 0 !important;
    height: auto !important;
    line-height: normal !important;
}

.domain-search-box .domain-search-btn:hover,
.domain-search-box button#checkButton:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.domain-search-box .domain-search-btn svg,
.domain-search-box button#checkButton svg {
    stroke: currentColor;
    flex-shrink: 0;
}


/* Transfer Link */
.domain-transfer-link {
    margin-top: 20px;
    text-align: center;
}

.domain-transfer-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.domain-transfer-link a:hover {
    color: #00d4ff;
}

.domain-transfer-link svg {
    stroke: currentColor;
}

/* Transfer Code Box */
.domain-transfer-box {
    margin-top: 20px;
    padding: 20px;
    background: rgba(25, 25, 55, 0.8);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    display: none;
}

.domain-transfer-box.show {
    display: block;
}

.domain-transfer-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    outline: none;
}

.domain-transfer-input:focus {
    border-color: rgba(102, 126, 234, 0.5);
}

/* ============================================
   TLD SHOWCASE SECTION
   ============================================ */
.domain-tld-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a3e 100%);
}

.domain-tld-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.domain-tld-header {
    text-align: center;
    margin-bottom: 50px;
}

.domain-tld-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
}

.domain-tld-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.domain-tld-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 20px !important;
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 0 20px;
}

.domain-tld-card,
.domain-tld-section .spotlight-tlds {
    position: relative;
    background: rgba(25, 25, 55, 0.7) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 28px 24px !important;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    display: block !important;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.domain-tld-card::before,
.domain-tld-section .spotlight-tlds::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #00d4ff);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.domain-tld-card:hover,
.domain-tld-section .spotlight-tlds:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.4) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.domain-tld-card:hover::before,
.domain-tld-section .spotlight-tlds:hover::before {
    opacity: 1;
}

.domain-tld-name {
    font-size: 32px;
    font-weight: 800;
    color: #00d4ff;
    margin: 0 0 8px 0;
}

.domain-tld-price {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 4px 0;
}

.domain-tld-amount {
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    margin: 0;
}

.domain-tld-old-price {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-left: 8px;
}

/* Popular Badge */
.domain-tld-card.popular,
.domain-tld-section .spotlight-tlds.popular {
    border-color: rgba(102, 126, 234, 0.4) !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(25, 25, 55, 0.9) 100%) !important;
}

.domain-tld-card.popular::before,
.domain-tld-section .spotlight-tlds.popular::before {
    opacity: 0.6;
}

.domain-popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   DOMAIN RESULTS SECTION
   ============================================ */
.domain-results-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a1a3e 0%, #0f0f23 100%);
    display: none;
}

.domain-results-section.show {
    display: block;
}

.domain-results-header {
    text-align: center;
    margin-bottom: 40px;
}

.domain-results-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.domain-results-status.available {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.domain-results-status.unavailable {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.domain-results-list {
    max-width: 1000px;
    margin: 0 auto;
}

.domain-result-card {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 24px 32px;
    background: rgba(25, 25, 55, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.domain-result-card:hover {
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateX(4px);
}

.domain-result-card.main-result {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(25, 25, 55, 0.9) 100%);
    border-color: rgba(102, 126, 234, 0.3);
}

.domain-result-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.domain-result-name strong {
    color: #00d4ff;
}

.domain-result-status {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
}

.domain-result-status.available {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.domain-result-status.unavailable {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.domain-result-status.premium {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.domain-result-price select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 10px 16px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    width: 100%;
}

.domain-result-price select:focus {
    border-color: rgba(102, 126, 234, 0.5);
}

.domain-result-action {
    text-align: right;
}

.domain-result-action .checkbox-custom {
    display: none;
}

.domain-result-action .checkbox-custom-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(102, 126, 234, 0.2);
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.domain-result-action .checkbox-custom:checked+.checkbox-custom-label {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
}

.domain-result-action .checkbox-custom-label::after {
    content: '✓';
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.domain-result-action .checkbox-custom:checked+.checkbox-custom-label::after {
    opacity: 1;
}

/* Transfer & Whois Buttons */
.domain-btn-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.domain-btn-small.transfer {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.domain-btn-small.transfer:hover {
    background: rgba(102, 126, 234, 0.3);
}

.domain-btn-small.whois {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.domain-btn-small.whois:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Continue Button */
.domain-continue-section {
    text-align: center;
    margin-top: 40px;
}

.domain-continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.domain-continue-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.5);
}

.domain-continue-btn:disabled {
    background: rgba(102, 126, 234, 0.2);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    box-shadow: none;
}

.domain-continue-btn:disabled:hover {
    transform: none;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.domain-features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a3e 100%);
    position: relative;
}

.domain-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.domain-features-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.domain-features-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
}

.domain-features-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.domain-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.domain-feature-card {
    padding: 36px 32px;
    background: rgba(25, 25, 55, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.domain-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #00d4ff, #10b981);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.domain-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.35);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.domain-feature-card:hover::before {
    opacity: 1;
}

.domain-feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.domain-feature-card:hover .domain-feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.25);
}

.domain-feature-icon svg {
    stroke: #00d4ff;
    filter: drop-shadow(0 2px 6px rgba(0, 212, 255, 0.4));
}

.domain-feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.domain-feature-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.domain-cta-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #1a1a3e 0%, #0a0a18 100%);
    position: relative;
}

.domain-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.domain-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 56px 64px;
    background: rgba(25, 25, 55, 0.9);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(102, 126, 234, 0.25);
    border-radius: 32px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.domain-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #00d4ff, #10b981, #667eea);
    background-size: 300% 100%;
    animation: ctaGradient 4s linear infinite;
}

@keyframes ctaGradient {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 300% 0%;
    }
}

.domain-cta-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px 0;
}

.domain-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.domain-cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.domain-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.domain-cta-btn.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.domain-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.domain-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.domain-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.domain-loading {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(102, 126, 234, 0.2);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: domainSpin 1s linear infinite;
}

@keyframes domainSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   CONTAINER
   ============================================ */
.domain-hero-section .container,
.domain-tld-section .container,
.domain-results-section .container,
.domain-features-section .container,
.domain-cta-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .domain-hero-title {
        font-size: 40px;
    }

    .domain-search-box {
        flex-direction: column;
        padding: 16px;
    }

    .domain-search-input {
        width: 100%;
        text-align: center;
    }

    .domain-search-btn {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }

    .domain-result-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }

    .domain-result-action {
        text-align: center;
    }

    .domain-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .domain-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .domain-cta-btn {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .domain-hero-section {
        padding: 80px 0 60px;
    }

    .domain-hero-title {
        font-size: 32px;
    }

    .domain-hero-desc {
        font-size: 16px;
    }

    .domain-tld-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .domain-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .domain-tld-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FAQ SECTION (Reusing hosting page classes)
   ============================================ */
.hp-faq-item {
    background: rgba(25, 25, 55, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hp-faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.hp-faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hp-faq-question:hover {
    color: #00d4ff;
}

.hp-faq-question svg {
    stroke: #667eea;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hp-faq-item.active .hp-faq-question svg {
    transform: rotate(90deg);
}

.hp-faq-answer {
    padding: 0 24px 20px 56px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.hp-faq-answer p {
    margin: 0 0 12px 0;
}

.hp-faq-answer p:last-child {
    margin-bottom: 0;
}