/*---------------------
  CHEAP DOMAIN PAGE BANNER STYLES
  Used in: cheap-domain/cheap-domain.blade.php
-----------------------*/

/* Modern domain banner section with gradient background */
.modern-domain-banner-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(235, 43, 99, 0.9)), url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Banner background decorative elements */
.banner-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Banner container positioning */
.banner-container {
    position: relative;
    z-index: 2;
}

/* Domain banner content wrapper */
.domain-banner-content-modern {
    color: white;
    text-align: center;
    padding: 60px 0;
}

/* Domain badge styling */
.domain-badge {
    margin-bottom: 24px;
}

.domain-badge span {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Domain main heading with gradient text */
.domain-main-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Domain description text */
.domain-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Domain form wrapper with glass effect */
.domain-form-warp {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Domain search form layout */
.domain-search-form {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Domain search input field */
.domain-search-input {
    flex: 1;
    min-width: 300px;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    outline: none;
}

/* Domain search button */
.domain-search-btn {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    color: #1e293b;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Domain search button hover effect */
.domain-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Domain pricing grid layout */
.domain-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
}

/* Domain trust message */
.domain-trust-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.domain-trust-message span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* Domain additional info */
.domain-additional-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 30px;
}

.domain-additional-info a {
    color: white;
    text-decoration: underline;
}

/* Domain TLD card styling */
.domain-tld-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Domain TLD card hover effect */
.domain-tld-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Domain TLD name */
.domain-tld-card .tld {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

/* Domain registration price */
.domain-tld-card .register {
    font-size: 20px;
    font-weight: 600;
    color: #10b981;
}

/* Domain renewal price */
.domain-tld-card .renew {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

/* RESPONSIVE DESIGN FOR CHEAP DOMAIN BANNER */

/* Tablet and small desktop (768px and below) */
@media (max-width: 768px) {
    .modern-domain-banner-section {
        min-height: 70vh !important;
        background-attachment: scroll !important;
        padding-top: 120px !important;
        padding-bottom: 40px !important;
    }
    
    .domain-banner-content-modern {
        padding: 40px 0 !important;
    }
    
    .domain-banner-content-modern h1 {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
    }
    
    .domain-banner-content-modern > div:nth-child(3) {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
    }
    
    .domain-form-warp {
        padding: 20px !important;
    }
    
    .domain-search-form {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .domain-search-input {
        min-width: unset !important;
        margin-bottom: 12px !important;
        padding: 20px 24px !important;
        font-size: 18px !important;
    }
    
    .domain-search-btn {
        width: 100% !important;
        padding: 20px 32px !important;
        font-size: 18px !important;
    }
    
    .domain-pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
        gap: 10px !important;
    }
    
    .domain-tld-card {
        min-height: 90px !important;
        padding: 12px !important;
    }
}

/* Mobile devices (576px and below) */
@media (max-width: 576px) {
    .modern-domain-banner-section {
        min-height: 60vh !important;
        padding-top: 110px !important;
        padding-bottom: 30px !important;
    }
    
    .domain-banner-content-modern {
        padding: 30px 0 !important;
    }
    
    .domain-banner-content-modern h1 {
        font-size: 2rem !important;
    }
    
    .domain-form-warp {
        padding: 15px !important;
    }
    
    .domain-pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
        gap: 8px !important;
    }
    
    .domain-tld-card {
        min-height: 80px !important;
        padding: 10px !important;
    }
    
    .domain-tld-card .tld {
        font-size: 16px !important;
    }
    
    .domain-tld-card .register {
        font-size: 18px !important;
    }
    
    .domain-tld-card .renew {
        font-size: 11px !important;
    }
    
    .domain-search-input {
        padding: 18px 20px !important;
        font-size: 16px !important;
    }
    
    .domain-search-btn {
        padding: 18px 24px !important;
        font-size: 16px !important;
    }
}

/* DOMAIN SEARCH RESULTS STYLES */

/* Domain search result cards */
.domain-unavailable-card, .domain-available-card {
    display: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(46, 23, 121, 0.15);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.domain-unavailable {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.domain-available {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #51cf66, #40c057);
    color: white;
}

.domain-search-header {
    padding: 20px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(235, 43, 99, 0.9));
    color: white;
    font-weight: 700;
    font-size: 24px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.domain-search-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.domain-search-header:hover::before {
    left: 100%;
}

.search-body {
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.searched-domain {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.searched-domain img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.searched-domain-price {
    width: 300px;
}

.searched-domain-price > p {
    font-size: 24px;
    font-weight: bold;
    color: #1f0544;
}

.buy-now {
    background: linear-gradient(135deg, #eb2b63, #d91a54);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(235, 43, 99, 0.3);
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
}

.buy-now:hover {
    background: linear-gradient(135deg, #d91a54, #c11845);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 43, 99, 0.4);
}

.searched-domain-price > .buy-now {
    padding: 12px 20px;
    color: #eb2b64;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    border: 2px solid #eb2b64;
    box-shadow: 0 4px 15px rgba(235, 43, 99, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.searched-domain-price > .buy-now:hover {
    color: white;
    background: linear-gradient(135deg, #eb2b64, #d91a54);
    border-color: #eb2b64;
    transform: translateY(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 43, 99, 0.4);
}

.other-tlds {
    font-weight: bold;
    font-size: 24px;
    padding: 15px 40px;
}

.invalid-domain {
    background-color: #eb2b64 !important;
}

.search-body {
    padding: 20px;
}

.alternative-domain {
    border-top: 1px solid #eee;
}

.domain-invalid-card {
    display: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* Domain search results responsive styles */
@media (max-width: 600px) {
    .searched-domain-price > .buy-now {
        position: static;
        width: 200px;
    }

    .searched-domain-price {
        flex-direction: column;
    }

    .search-body {
        flex-direction: column;
    }
}

/* END OF DOMAIN SEARCH RESULTS STYLES */

/* AI FEATURES SECTION STYLES */
.ai-features-section {
    background: #f8fafc;
    padding: 80px 0;
}

.ai-features-content h3 {
    color: #1e293b;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ai-features-content p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ai-feature-list {
    margin-top: 30px;
}

.ai-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ai-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.ai-feature-item i {
    font-size: 24px;
    color: #eb2b63;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.ai-feature-item h4 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ai-feature-item p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.ai-features-visual {
    padding-left: 30px;
}

.ai-demo-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.ai-demo-header {
    background: linear-gradient(135deg, #eb2b63, #d91a54);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.ai-demo-header i {
    margin-right: 10px;
    font-size: 18px;
}

.ai-demo-content {
    padding: 25px;
}

.demo-input {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #eb2b63;
    margin-bottom: 20px;
}

.demo-input span {
    color: #1e293b;
    font-weight: 500;
}

.demo-arrow {
    text-align: center;
    margin: 15px 0;
}

.demo-arrow i {
    color: #eb2b63;
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.demo-suggestions {
    display: grid;
    gap: 10px;
}

.suggestion-item {
    background: #f8fafc;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.suggestion-item:hover {
    background: #eb2b63;
    color: white;
    transform: translateX(5px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .ai-features-section {
        padding: 60px 0;
    }
    
    .ai-features-content h3 {
        font-size: 24px;
    }
    
    .ai-features-visual {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .ai-feature-item {
        padding: 15px;
    }
    
    .ai-feature-item i {
        font-size: 20px;
    }
    
    .ai-demo-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .ai-features-content h3 {
        font-size: 22px;
    }
    
    .ai-feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .ai-feature-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* END OF CHEAP DOMAIN BANNER STYLES */