/* ============================================
   DOMAIN PAGE - Modern Orange & White Theme
   Developer Hosting Theme
   Includes: Domain Registration, Transfer, WHOIS
============================================ */

/* Base styles for all domain pages */
.domain-page,
.whois-page,
.domain-transfer-page {
    background: #ffffff;
}

/* Section Header - Common for all domain pages */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.section-header p {
    font-size: 17px;
    color: #64748b;
}

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

/* FAQ Accordion - Common for all domain pages */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 2px solid #f1f5f9;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff7a00;
}

.faq-item.active {
    border-color: #ff7a00;
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ff7a00;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: #ff7a00;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 24px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Hero Section */
.domain-hero {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.domain-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.domain-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.domain-badge svg {
    width: 18px;
    height: 18px;
}

.domain-hero-content h1 {
    font-size: 52px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.domain-hero-content p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
}

/* Domain Search Hero */
.domain-search-hero {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.domain-hero-input-group {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.domain-hero-input-group:focus-within {
    border-color: #ff7a00;
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.25), 0 8px 25px rgba(0, 0, 0, 0.1);
}

.domain-hero-input-group input {
    flex: 1;
    padding: 24px 30px;
    font-size: 18px;
    border: none;
    background: transparent;
    color: #0f172a;
}

.domain-hero-input-group input:focus {
    outline: none;
}

.domain-hero-input-group input::placeholder {
    color: #94a3b8;
}

.domain-hero-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 40px;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.domain-hero-btn:hover {
    background: linear-gradient(135deg, #e86e00 0%, #ff8800 100%);
}

.domain-hero-btn svg {
    width: 22px;
    height: 22px;
}

/* Hero Background Shapes */
.domain-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.domain-hero-shape {
    position: absolute;
    border-radius: 50%;
}

.domain-hero-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.domain-hero-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

.domain-hero-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 20%;
}

/* Hero Results */
.domain-hero-results {
    margin-top: 24px;
    display: none;
}

.domain-hero-results.show {
    display: block;
}

/* Extensions Section */
.domain-extensions {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.section-header p {
    font-size: 17px;
    color: #64748b;
}

/* Extensions Grid */
.extensions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.extension-card {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.extension-card:hover {
    border-color: #ff7a00;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 122, 0, 0.15);
}

.extension-card.featured {
    border-color: #ff7a00;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.03) 0%, rgba(255, 149, 0, 0.02) 100%);
}

.extension-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.extension-name {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
}

.extension-card.featured .extension-name {
    color: #ff7a00;
}

.extension-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.extension-price {
    margin-bottom: 20px;
}

.extension-price .old-price {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 8px;
}

.extension-price .current-price {
    font-size: 36px;
    font-weight: 900;
    color: #ff7a00;
}

.extension-price .period {
    font-size: 14px;
    color: #64748b;
}

.extension-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #0f172a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.extension-btn:hover {
    background: #ff7a00;
    transform: translateY(-2px);
}

/* More Extensions */
.more-extensions {
    text-align: center;
}

.more-extensions h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.extensions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.ext-item {
    background: #f8fafc;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    color: #475569;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ext-item:hover {
    border-color: #ff7a00;
    background: rgba(255, 122, 0, 0.05);
}

.ext-item b {
    color: #ff7a00;
    font-weight: 700;
    margin-left: 6px;
}

/* Features Section */
.domain-features {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #ff7a00;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* Transfer Section */
.domain-transfer {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.transfer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.transfer-text {
    flex: 1;
}

.transfer-text h2 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
}

.transfer-text > p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 32px;
}

.transfer-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.transfer-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
}

.transfer-benefits li svg {
    width: 20px;
    height: 20px;
    color: #ff7a00;
    flex-shrink: 0;
}

.transfer-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.transfer-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 122, 0, 0.4);
}

.transfer-image {
    flex-shrink: 0;
}

.transfer-image svg {
    width: 250px;
    height: 250px;
}

/* FAQ Section */
.domain-faq {
    padding: 100px 0;
    background: #ffffff;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff7a00;
}

.faq-item.active {
    border-color: #ff7a00;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: #ff7a00;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 28px 24px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .domain-hero-content h1 {
        font-size: 40px;
    }
    
    .extensions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transfer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .transfer-benefits {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .domain-hero {
        padding: 60px 0;
    }
    
    .domain-hero-content h1 {
        font-size: 32px;
    }
    
    .domain-hero-content p {
        font-size: 16px;
    }
    
    .domain-hero-input-group {
        flex-direction: column;
        border-radius: 16px;
    }
    
    .domain-hero-input-group input {
        padding: 20px;
        text-align: center;
    }
    
    .domain-hero-btn {
        justify-content: center;
        padding: 18px;
    }
    
    .extensions-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .extension-card {
        padding: 24px;
    }
    
    .extension-name {
        font-size: 28px;
    }
    
    .extension-price .current-price {
        font-size: 28px;
    }
    
    .transfer-text h2 {
        font-size: 28px;
    }
    
    .transfer-image svg {
        width: 180px;
        height: 180px;
    }
}

/* ============================================
   DOMAIN TRANSFER PAGE
============================================ */

.domain-transfer-hero {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.domain-transfer-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.domain-transfer-search {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.transfer-input-group {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.transfer-input-group:focus-within {
    border-color: #ff7a00;
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.25), 0 8px 25px rgba(0, 0, 0, 0.1);
}

.transfer-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: #ff7a00;
    background: rgba(255, 122, 0, 0.05);
}

.transfer-input-icon svg {
    width: 24px;
    height: 24px;
}

.transfer-input-group input {
    flex: 1;
    padding: 24px 20px;
    font-size: 18px;
    border: none;
    background: transparent;
    color: #0f172a;
}

.transfer-input-group input:focus {
    outline: none;
}

.transfer-input-group input::placeholder {
    color: #94a3b8;
}

.transfer-search-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 40px;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transfer-search-btn:hover {
    background: linear-gradient(135deg, #ff9500 0%, #ffaa00 100%);
    transform: translateX(-2px);
}

.transfer-search-btn svg {
    width: 20px;
    height: 20px;
}

.transfer-results {
    margin-top: 30px;
    display: none;
}

.transfer-results.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.domain-transfer-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.transfer-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
    animation: float 20s infinite ease-in-out;
}

.transfer-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.transfer-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.transfer-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

/* Transfer Benefits Section */
.transfer-benefits-section {
    padding: 100px 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff7a00;
}

.benefit-card.featured {
    border-color: #ff7a00;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(255, 149, 0, 0.02) 100%);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: #ff7a00;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* Transfer Process Section */
.transfer-process {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* Transfer Requirements Section */
.transfer-requirements {
    padding: 100px 0;
    background: #0f172a;
}

.requirements-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.requirements-text {
    flex: 1;
}

.requirements-text h2 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
}

.requirements-text > p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 32px;
}

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

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.7;
}

.requirements-list li svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #ff7a00;
    margin-top: 2px;
}

.requirements-image {
    flex-shrink: 0;
}

.requirements-image svg {
    width: 300px;
    height: 300px;
}

/* Transfer CTA Section */
.transfer-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #ffffff;
    color: #ff7a00;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* ============================================
   WHOIS PAGE
============================================ */

.whois-hero {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.whois-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.whois-search {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.whois-input-group {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.whois-input-group:focus-within {
    border-color: #ff7a00;
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.25), 0 8px 25px rgba(0, 0, 0, 0.1);
}

.whois-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: #ff7a00;
    background: rgba(255, 122, 0, 0.05);
}

.whois-input-icon svg {
    width: 24px;
    height: 24px;
}

.whois-input-group input {
    flex: 1;
    padding: 24px 20px;
    font-size: 18px;
    border: none;
    background: transparent;
    color: #0f172a;
}

.whois-input-group input:focus {
    outline: none;
}

.whois-input-group input::placeholder {
    color: #94a3b8;
}

.whois-search-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 40px;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whois-search-btn:hover {
    background: linear-gradient(135deg, #ff9500 0%, #ffaa00 100%);
    transform: translateX(-2px);
}

.whois-search-btn svg {
    width: 20px;
    height: 20px;
}

.whois-results {
    margin-top: 30px;
    display: none;
}

.whois-results.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.whois-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.whois-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
    animation: float 20s infinite ease-in-out;
}

.whois-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.whois-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.whois-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

/* WHOIS Info Section */
.whois-info-section {
    padding: 100px 0;
    background: #ffffff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff7a00;
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 32px;
    height: 32px;
    color: #ff7a00;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* WHOIS Features Section */
.whois-features {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff7a00;
}

.feature-icon-small {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-small svg {
    width: 28px;
    height: 28px;
    color: #ff7a00;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid,
    .info-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .requirements-content {
        flex-direction: column;
    }
    
    .requirements-image svg {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767px) {
    .benefits-grid,
    .info-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .transfer-input-group,
    .whois-input-group {
        flex-direction: column;
    }
    
    .transfer-search-btn,
    .whois-search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .whois-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .whois-label {
        min-width: auto;
    }
    
    .whois-result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* WHOIS Results Styling */
.whois-result-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #f1f5f9;
}

.whois-result-header {
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whois-result-header h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.whois-status {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.whois-status.available {
    background: #10b981;
    color: #ffffff;
}

.whois-status.registered {
    background: #ffffff;
    color: #ff7a00;
}

.whois-result-body {
    padding: 30px;
}

.whois-row {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.whois-label {
    font-weight: 700;
    color: #0f172a;
    min-width: 180px;
    font-size: 15px;
}

.whois-value {
    color: #64748b;
    font-size: 15px;
    flex: 1;
}

.whois-result-footer {
    padding: 20px 30px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.whois-result-footer p {
    margin: 0;
    font-size: 13px;
    color: #94a3b8;
}

