/* Main Stylesheet - Additional Styles Specific to Homepage */

/* Hero-specific button styles handled in button.css */

.cta-buttons {
    margin-top: var(--spacing-lg);
}

.cta-buttons .btn {
    margin-left: var(--spacing-md);
}

.cta-buttons .btn:first-child {
    margin-left: 0;
}

.cta-text {
    margin-top: var(--spacing-md);
    color: var(--color-text-light);
}

.cta-text a {
    color: var(--color-primary);
}

/* Service cards spacing */
.grid.grid-3 {
    margin-top: var(--spacing-lg);
}

/* Modern spacing improvements */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Refined link hover effects */
.card-link,
.cta-text a {
    position: relative;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.card-link:hover::after {
    width: 100%;
}

/* Link styles */
a[href^="tel:"] {
    color: inherit;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hero-cta .btn {
        width: 100%;
        margin: 0;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
    }
    
    .cta-buttons .btn {
        margin-left: 0;
        width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        gap: var(--spacing-lg);
    }
}

