/* Header styles */
.header {
    background: #000;
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-light {
    background: transparent !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Hero section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    margin-top: -20px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Domain search */
.domain-search-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
}

.domain-search-input {
    height: 50px;
    border-radius: 25px;
    border: none;
    padding: 0 20px;
    font-size: 16px;
    width: 100%;
}

.domain-search-btn {
    height: 50px;
    border-radius: 25px;
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0 30px;
    font-weight: 500;
    margin-top: 15px;
}

/* Domain pricing cards */
.domain-pricing {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.domain-price-item {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 5px;
    text-align: center;
}

.domain-price-item .tld {
    font-size: 24px;
    font-weight: 600;
}

.domain-price-item .price {
    font-size: 18px;
    color: #007bff;
}

/* Service cards */
.service-cards {
    padding: 60px 0;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-card .btn {
    background: #007bff;
    color: #fff;
    padding: 8px 25px;
    border-radius: 20px;
    text-decoration: none;
}

/* Additional services section */
.additional-services {
    background: #f8f9fa;
    padding: 60px 0;
}

.additional-service-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.additional-service-item img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.additional-service-item h4 {
    margin: 0;
    font-size: 18px;
}

/* Footer adjustments */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .domain-pricing {
        flex-wrap: wrap;
    }
    
    .domain-price-item {
        width: calc(50% - 10px);
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
}
