/* Additional Custom Styles for WebMA Theme */

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-orange);
    cursor: pointer;
    padding: 0.5rem;
}

/* Header Scrolled State */
.site-header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Search Results Styles */
.search-results {
    margin-top: 3rem;
    animation: fadeIn 0.5s ease;
}

.domain-results-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.domain-result-item {
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.domain-result-item.available {
    border-color: var(--primary-green);
    background: var(--light-green);
}

.domain-result-item.taken {
    opacity: 0.7;
}

.domain-result-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.domain-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.domain-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.domain-status {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.domain-status .fa-check-circle {
    color: var(--primary-green);
}

.domain-status .fa-times-circle {
    color: #E74C3C;
}

.domain-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.btn-small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.btn-success {
    background: var(--primary-green);
    color: var(--white);
}

/* Alert Styles */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-error {
    background: #FEE;
    color: #C33;
    border: 1px solid #FCC;
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 0.8s ease forwards;
}

/* Section Title Styles */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-green) 100%);
    border-radius: 2px;
}

/* Pricing Features List */
.pricing-features {
    list-style: none;
    padding: 1.5rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features .fa-check {
    color: var(--primary-green);
}

/* Social Links */
.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 9999;
        padding: 5rem 2rem 2rem;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .domain-result-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .domain-info {
        align-items: center;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .notification {
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        right: auto;
    }
    
    .notification.show {
        transform: translateX(-50%) translateY(0);
    }
}

/* Loading State */
.loading {
    text-align: center;
    padding: 2rem;
}

.loading i {
    font-size: 3rem;
    color: var(--primary-orange);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}