@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0A1F44;
    --accent-color: #00FFC6;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.navbar {
    background: var(--primary-color) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #00e6b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 198, 0.3);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, white, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.pricing-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 1rem 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(45deg);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.plan-price-old {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.plan-savings {
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    padding-left: 25px;
}

.plan-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-plan {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    transition: all 0.3s;
}

.btn-plan:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

/* Domain Search Styles */
.domain-search-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.domain-extensions {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 1.5rem;
}

.domain-extensions .form-check {
    margin-bottom: 0.5rem;
}

.domain-extensions .form-check-label {
    font-weight: 500;
    cursor: pointer;
    padding-left: 0.5rem;
}

.domain-extensions .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.domain-results {
    margin-top: 2rem;
}

.results-header h5 {
    color: var(--primary-color);
    font-weight: 700;
}

.domain-result-item {
    background: white;
    transition: all 0.3s;
    border: 1px solid var(--border-color) !important;
}

.domain-result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color) !important;
}

.domain-result-item h6 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.domain-status .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.domain-status .btn-sm {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

#searchBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Domain search input styling */
#domainSearch {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px 0 0 50px;
    transition: border-color 0.3s;
}

#domainSearch:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 198, 0.25);
}

#searchBtn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Extension checkboxes styling */
.domain-extensions .row > div {
    margin-bottom: 0.75rem;
}

.form-check-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 198, 0.25);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .domain-search-card {
        padding: 1.5rem;
    }
    
    .domain-result-item {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .domain-status {
        margin-top: 1rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    #domainSearch {
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    #searchBtn {
        border-radius: 10px;
        width: 100%;
    }
    
    .input-group-lg {
        flex-direction: column;
    }
} 