/* DixieNetworks.com - Homepage Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #3dbad5;
}

.service-card-icon {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    color: #3dbad5;
    padding: 1.5rem;
    text-align: center;
    font-size: 2.5rem;
}

.service-card-body {
    padding: 1.5rem;
}

.service-card-body h3 {
    color: #1a3a5c;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-card-body p {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-card-body .card-link {
    display: inline-block;
    color: #3dbad5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.service-card-body .card-link:hover {
    border-color: #3dbad5;
}

/* Hosting plan cards */
.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.plan-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: #3dbad5;
}

.plan-card.featured {
    border-color: #3dbad5;
    background: linear-gradient(to bottom, #f7fdff 0%, #fff 100%);
}

.plan-card .plan-badge {
    display: inline-block;
    background: #3dbad5;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-card h3 {
    color: #1a3a5c;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.plan-card .plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a3a5c;
    margin: 0.5rem 0;
}

.plan-card .plan-price .plan-period {
    font-size: 1rem;
    font-weight: normal;
    color: #718096;
}

.plan-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.plan-card .plan-features li {
    padding: 0.4rem 0;
    color: #4a5568;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.plan-card .plan-features li::before {
    content: "\2713";
    color: #3dbad5;
    font-weight: bold;
    margin-right: 0.5rem;
}

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

.plan-card .plan-button {
    display: inline-block;
    background: #1a3a5c;
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
    width: 100%;
}

.plan-card .plan-button:hover {
    background: #2c5282;
}

.plan-card.featured .plan-button {
    background: #3dbad5;
}

.plan-card.featured .plan-button:hover {
    background: #2aa9c4;
}

/* Stats section */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    background: #1a3a5c;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #3dbad5;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA section */
.cta-section {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    color: #fff;
    border-radius: 8px;
    margin: 2rem 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: #a0aec0;
    margin-bottom: 1.5rem;
}

.cta-section .cta-button {
    display: inline-block;
    background: #3dbad5;
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.cta-section .cta-button:hover {
    background: #2aa9c4;
}

/* Section heading */
.section-heading {
    text-align: center;
    margin: 2.5rem 0 1rem;
}

.section-heading h2 {
    color: #1a3a5c;
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.section-heading p {
    color: #718096;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
    .plan-cards {
        grid-template-columns: 1fr;
    }
    .stats-bar {
        gap: 1.5rem;
    }
}