/* =====================================================
   1. DOMAIN SEARCH HERO SECTION
   ===================================================== */
.Vagocat-domain-page {
    background-color: #ffffff; 
}

.domain-hero {
    background-color: #0d1117;
    padding: 80px 24px 120px 24px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.domain-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 60px;
    align-items: center;
}

.domain-hero-content {
    display: flex;
    flex-direction: column;
}

.domain-pre-title {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.domain-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 48px 0;
}

.domain-search-module {
    margin-bottom: 24px;
    position: relative;
    z-index: 5;
}

.domain-tabs {
    display: flex;
    align-items: flex-end;
}

/* RESTORED: Heavy Black Borders and Shadows */
.domain-tab-btn {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    border: 4px solid #111827; 
    border-bottom: none; 
    background-color: #ffffff;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0; 
    margin-right: -4px; 
}

.domain-tab-btn:not(.active) {
    background-color: #9D00FF;
    color: #ffffff;
    border-color: #111827;
    border-bottom: 4px solid #111827;
    transform: translateY(4px); 
    padding-bottom: 12px;
}

.domain-tab-btn.active {
    background-color: #ffffff;
    color: #111827;
    padding-top: 20px; 
    z-index: 2;
    position: relative;
}

.domain-tab-btn.ai-tab i {
    margin-right: 6px;
}

.domain-tab-btn:not(.active):hover {
    background-color: #7b00cc;
}

.domain-search-body {
    background-color: #ffffff;
    border: 4px solid #111827; 
    padding: 24px;
    box-shadow: 12px 12px 0px #111827;
    position: relative;
    z-index: 1;
}

.domain-form {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.domain-input-field {
    flex-grow: 1;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 20px;
    color: #111827;
    padding: 16px 20px;
    border: 3px solid #E5E7EB;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s ease;
}

.domain-input-field:focus {
    border-color: #9D00FF;
}

.domain-submit-btn {
    background-color: #9D00FF;
    color: #ffffff;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 700;
    padding: 0 40px;
    border-top: none;
    border-left: none;
    border-right: 2px solid #111827;
    border-bottom: 2px solid #111827;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease;
    box-shadow: 6px 6px 0px rgba(17, 24, 39, 0.18);
    border-radius: 0;
}

.domain-submit-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px rgba(17, 24, 39, 0.25);
    background-color: #111827;
    color: #ffffff;
}

.domain-subtext {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #8b949e; 
    margin: 0;
}

.domain-subtext .highlight {
    color: #9D00FF;
    font-weight: 700;
}

/* Hero Image Container & Image */
.domain-hero-vector {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 650px; 
    margin: 0 auto;
}

.domain-hero-vector img,
.domain-hero-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 580px;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.4));
}

/* =====================================================
   2. FREE DOMAIN PROMO SECTION
   ===================================================== */
.domain-promo-section {
    background-color: #ffffff;
    padding: 100px 24px;
    text-align: center;
    border-bottom: none;
}

.promo-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 6vw, 72px); 
    font-weight: 800;
    color: #111827;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.promo-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.promo-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #9D00FF;
    color: #ffffff;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    text-decoration: none;
    border-top: none;
    border-left: none;
    border-right: 2px solid #111827;
    border-bottom: 2px solid #111827;
    box-shadow: 6px 6px 0px rgba(17, 24, 39, 0.18);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease;
}

.promo-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px rgba(17, 24, 39, 0.25);
    background-color: #111827;
}

/* =====================================================
   3. TLD PRICING GRID SECTION
   ===================================================== */
.domain-tld-section {
    background-color: #ffffff; 
    padding: 100px 24px 120px 24px;
    border-top: none;
}

.tld-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tld-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 6vw, 72px); 
    font-weight: 800;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 auto 80px auto;
    max-width: 900px;
}

.tld-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px;
}

/* TLD CARDS: Pure White, No Hover, Black Shadow Restored */
.tld-card {
    background-color: #ffffff;
    border-top: none;
    border-left: none;
    border-right: 3px solid #111827; 
    border-bottom: 3px solid #111827;
    box-shadow: 6px 6px 0px #111827; 
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.tld-name {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 24px 0;
}

.tld-intro-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.tld-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.tld-price {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 800;
    color: #9D00FF;
}

.tld-renew {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    color: #9CA3AF;
    font-weight: 500;
    margin-top: auto; 
}

/* =====================================================
   4. DOMAIN TIPS SECTION 
   ===================================================== */
.domain-tips-banner {
    background-color: #ffffff; 
    padding: 100px 24px 120px 24px; 
    width: 100%;
    box-sizing: border-box;
    border-top: none;
}

.domain-tips-container {
    max-width: 1400px;
    margin: 0 auto;
}

.domain-tips-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 6vw, 72px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

.domain-tips-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.domain-tip-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.domain-icon-box {
    width: 72px;
    height: 72px;
    background-color: #111827;
    border: 2px solid #111827;
    border-radius: 0; 
    box-shadow: 6px 6px 0px #D1D5DB; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.domain-tip-item:hover .domain-icon-box {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #9D00FF; 
}

.domain-icon-box svg {
    width: 32px;
    height: 32px;
}

.domain-tip-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.domain-tip-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

.tips-link {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: #9D00FF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tips-link:hover {
    color: #111827;
    text-decoration: underline;
}

/* =====================================================
   5. DOMAIN FEATURES SECTION
   ===================================================== */
.domain-features-section {
    background-color: #ffffff; 
    padding: 100px 24px;
    width: 100%;
    box-sizing: border-box;
    border-top: none;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 6vw, 72px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

.features-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.feat-card {
    display: flex;
    flex-direction: column;
}

.feat-card h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.feat-card p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* =====================================================
   6. SUPPORT SECTION
   ===================================================== */
.Vagocat-support-section {
    background-color: #ffffff; 
    padding: 100px 24px;
    width: 100%;
    box-sizing: border-box;
    border-top: none;
}

.support-massive-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 6vw, 72px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.support-geo-icon {
    width: 72px;
    height: 72px;
    background-color: #ffffff;
    border: 3px solid #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 6px 6px 0px #111827;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-item:hover .support-geo-icon {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #9D00FF; 
}

.support-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.support-link {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #4B5563; 
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.support-link:hover {
    color: #111827;
}

/* =====================================================
   7. FAQ SECTION
   ===================================================== */
.Vagocat-faq-section {
    background-color: #ffffff; 
    padding: 100px 24px;
    width: 100%;
    box-sizing: border-box;
    border-top: none;
}

.faq-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 6vw, 72px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.05; 
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

.faq-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.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: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.faq-block p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   8. BRUTALIST MODAL STYLES
   ===================================================== */
.Vagocat-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(17, 24, 39, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.Vagocat-modal.active {
    display: flex;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.Vagocat-modal-content {
    background-color: #ffffff;
    border: 4px solid #111827;
    padding: 48px 40px;
    width: 100%;
    max-width: 650px;
    box-shadow: 16px 16px 0px #9D00FF;
    position: relative;
    text-align: center;
}

.Vagocat-modal-close {
    position: absolute;
    top: -24px;
    right: -24px;
    background-color: #111827;
    color: #ffffff;
    border: 4px solid #111827;
    width: 48px;
    height: 48px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease, background-color 0.2s ease;
}

.Vagocat-modal-close:hover {
    transform: scale(1.1);
    background-color: #9D00FF;
}

.Vagocat-modal-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #111827;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.Vagocat-modal-title span {
    color: #9D00FF;
}

.Vagocat-modal-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #4B5563;
    margin: 0 0 32px 0;
}

.modal-form {
    display: flex;
    gap: 16px;
    align-items: stretch;
}


/* =====================================================
   RESPONSIVE MEDIA QUERIES
   ===================================================== */
@media (max-width: 1200px) {
    .domain-tips-grid-5 {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 1024px) {
    .domain-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .domain-hero-vector {
        grid-row: 1; 
        max-width: 450px; 
    }
    .domain-title {
        text-align: center;
    }
    .domain-pre-title, .domain-subtext {
        text-align: center;
        display: block;
    }
    .tld-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    .faq-text-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .domain-form {
        flex-direction: column;
    }
    .domain-submit-btn {
        padding: 16px 0; 
    }
    .domain-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    .domain-tab-btn {
        margin-right: 0;
        margin-bottom: -4px;
        border-bottom: 4px solid #111827 !important; 
    }
    .domain-tab-btn:not(.active) {
        transform: translateY(0);
        padding-bottom: 16px;
    }
    .domain-tab-btn.active {
        padding-top: 16px;
        z-index: 2;
    }

    .tld-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .domain-tips-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-3x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .domain-hero {
        padding: 40px 20px 80px 20px;
    }
    .domain-title {
        font-size: 40px;
    }
    .domain-search-body {
        padding: 16px;
    }
    .domain-input-field {
        font-size: 16px;
    }
    .domain-promo-section {
        padding: 60px 20px;
    }
    .promo-btn {
        width: 100%;
        box-sizing: border-box;
    }
    .tld-grid {
        grid-template-columns: 1fr;
    }
    .domain-tld-section,
    .domain-tips-banner,
    .domain-features-section {
        padding: 60px 20px;
    }
    .domain-tips-grid-5,
    .features-grid-3x2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .support-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .support-massive-heading,
    .faq-main-heading,
    .domain-tips-main-heading,
    .features-heading,
    .tld-main-heading {
        font-size: 36px;
        margin-bottom: 50px;
    }
    .faq-column {
        gap: 36px;
    }
    
    .Vagocat-modal-content {
        padding: 40px 24px;
    }
    .Vagocat-modal-close {
        top: -16px;
        right: -16px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    .modal-form {
        flex-direction: column;
    }
}