/* =====================================================
   1. WHOIS HERO & SEARCH SECTION
   ===================================================== */
.Vagocat-whois-page {
    background-color: #ffffff; 
}

.whois-hero {
    background-color: #0d1117;
    padding: 100px 24px 80px 24px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.whois-hero-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whois-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 6vw, 64px); 
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 20px 0;
}

.whois-sub-heading {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.6;
    color: #8b949e; 
    margin: 0 0 40px 0;
    max-width: 700px;
}

/* Brutalist Search Bar (Unified Shadow to prevent glitches) */
.whois-search-form {
    display: flex;
    width: 100%;
    max-width: 800px;
    margin-bottom: 24px;
    /* Apply dark shadow to the entire form container */
    box-shadow: 8px 8px 0px #111827; 
}

.search-input-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 4px solid #111827; 
    border-right: none;
    padding: 8px 24px;
}

.search-icon {
    color: #111827;
    margin-right: 16px;
    flex-shrink: 0;
}

.whois-input {
    flex-grow: 1;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    border: none;
    outline: none;
    padding: 16px 0;
    background: transparent;
    width: 100%;
}

.whois-input::placeholder {
    color: #9CA3AF;
    font-weight: 500;
}

/* Search Submit Button (No shadow/transform trick needed due to parent container shadow) */
.whois-submit-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #9D00FF; 
    color: #ffffff;
    padding: 0 32px; 
    cursor: pointer;
    border: 4px solid #111827; 
    transition: background-color 0.2s ease;
}

.whois-submit-btn:hover {
    background-color: #111827;
    color: #ffffff;
}

/* Links below search */
.whois-hero-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 16px;
}

.whois-hero-links a {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #9D00FF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.whois-hero-links a:hover {
    color: #ffffff;
}

/* =====================================================
   GLOBAL CONTAINER
   ===================================================== */
.whois-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =====================================================
   2. FEATURES GRID (3-Column - STATIC CARDS)
   ===================================================== */
.whois-features-section {
    padding: 80px 24px 120px 24px;
    background-color: #ffffff;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Static Brutalist Cards: No hover effect, transparent top/left */
.feature-card {
    background-color: #ffffff;
    border-top: 0px solid transparent;
    border-left: 0px solid transparent;
    border-right: 4px solid #111827;
    border-bottom: 4px solid #111827;
    padding: 40px 32px;
    box-shadow: 8px 8px 0px #D1D5DB;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Removed transition and hover effects completely */
}

/* Square Brutalist Icons */
.feature-icon {
    width: 64px;
    height: 64px;
    background-color: #111827;
    color: #9D00FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    /* Removed border-radius so it remains a sharp square */
}

.feature-card h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 16px 0;
}

.feature-card p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* =====================================================
   3. ZIG-ZAG INFO SECTION
   ===================================================== */
.whois-info-section {
    padding: 80px 24px;
    background-color: #F8F9FA; 
}

.info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.info-text-block {
    display: flex;
    flex-direction: column;
}

.info-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(36px, 5vw, 56px); 
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 24px 0;
}

.info-sub-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin: 32px 0 16px 0;
}

.mt-8 {
    margin-top: 32px;
}

.info-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

.info-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* =====================================================
   4. FAQ SECTION
   ===================================================== */
.Vagocat-faq-section {
    background-color: #ffffff; 
    padding: 80px 24px 120px 24px;
}

.faq-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(36px, 5vw, 56px); 
    font-weight: 800;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 60px 0;
}

.faq-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-block h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.faq-block p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES
   ===================================================== */
@media (max-width: 1024px) {
    .features-grid-3 {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .info-split {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .info-visual {
        order: -1; /* Puts image on top */
    }
}

@media (max-width: 900px) {
    .faq-text-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 600px) {
    .whois-hero {
        padding: 80px 20px 60px 20px;
    }

    /* On mobile, stack the search input and button, and apply shadow individually */
    .whois-search-form {
        flex-direction: column;
        box-shadow: none; 
    }

    .search-input-wrapper {
        border-right: 4px solid #111827;
        box-shadow: 6px 6px 0px #111827; 
        margin-bottom: 16px;
    }

    .whois-submit-btn {
        width: 100%;
        padding: 18px;
        box-shadow: 6px 6px 0px #111827;
    }

    .whois-hero-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .whois-features-section,
    .whois-info-section,
    .Vagocat-faq-section {
        padding: 60px 20px;
    }

    .feature-card {
        padding: 32px 20px;
    }
}