:root {
    --primary: #0d6efd;
    --accent: #00b4d8;
    --dark: #1a1a1a;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.card-service {
    transition: all 0.4s ease;
    border: none;
}

.card-service:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd, #00b4d8);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.price-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffc107;
    color: #000;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-card {
    border-left: 5px solid var(--accent);
}

footer a {
    text-decoration: none;
}

footer a:hover {
    color: var(--accent) !important;
}